Skip to content

Commit

Permalink
fix: switch to load balancer
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Jul 30, 2022
1 parent 064102d commit 39e5fec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@

@CapacitorPlugin(name = "CapacitorUpdater")
public class CapacitorUpdaterPlugin extends Plugin implements Application.ActivityLifecycleCallbacks {
private static final String updateUrlDefault = "https://xvwzpoazmxkqosrdewyv.functions.supabase.co/updates";
private static final String statsUrlDefault = "https://xvwzpoazmxkqosrdewyv.functions.supabase.co/stats";
private static final String updateUrlDefault = "https://api.capgo.app/updates";
private static final String statsUrlDefault = "https://api.capgo.app/stats";
private static final String DELAY_UPDATE = "delayUpdate";
private static final String DELAY_UPDATE_VAL = "delayUpdateVal";

Expand Down
4 changes: 2 additions & 2 deletions ios/Plugin/CapacitorUpdaterPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import Version
@objc(CapacitorUpdaterPlugin)
public class CapacitorUpdaterPlugin: CAPPlugin {
private var implementation = CapacitorUpdater()
static let updateUrlDefault = "https://xvwzpoazmxkqosrdewyv.functions.supabase.co/updates"
static let statsUrlDefault = "https://xvwzpoazmxkqosrdewyv.functions.supabase.co/stats"
static let updateUrlDefault = "https://api.capgo.app/updates"
static let statsUrlDefault = "https://api.capgo.app/stats"
let DELAY_UPDATE = "delayUpdate"
let DELAY_UPDATE_VAL = "delayUpdateVal"
private var updateUrl = ""
Expand Down

0 comments on commit 39e5fec

Please sign in to comment.