From 0b6fe65b3ce571bb2552750579572ecbd2a7cb5b Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 22 Sep 2020 16:56:51 +1000 Subject: [PATCH] move to staging server for apns --- js/modules/loki_app_dot_net_api.js | 7 +++++-- js/modules/loki_push_notification_server_api.js | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/js/modules/loki_app_dot_net_api.js b/js/modules/loki_app_dot_net_api.js index 5e6cc705a..efcd5642a 100644 --- a/js/modules/loki_app_dot_net_api.js +++ b/js/modules/loki_app_dot_net_api.js @@ -26,13 +26,16 @@ const LOKIFOUNDATION_DEVFILESERVER_PUBKEY = 'BSZiMVxOco/b3sYfaeyiMWv/JnqokxGXkHoclEx8TmZ6'; const LOKIFOUNDATION_FILESERVER_PUBKEY = 'BWJQnVm97sQE3Q1InB4Vuo+U/T1hmwHBv0ipkiv8tzEc'; +const LOKIFOUNDATION_APNS_PUBKEY = + 'BWQqZYWRl0LlotTcUSRJZPvNi8qyt1YSQH3li4EHQNBJ'; + const urlPubkeyMap = { 'https://file-dev.getsession.org': LOKIFOUNDATION_DEVFILESERVER_PUBKEY, 'https://file-dev.lokinet.org': LOKIFOUNDATION_DEVFILESERVER_PUBKEY, 'https://file.getsession.org': LOKIFOUNDATION_FILESERVER_PUBKEY, 'https://file.lokinet.org': LOKIFOUNDATION_FILESERVER_PUBKEY, - 'https://staging.apns.getsession.org': - 'BWQqZYWRl0LlotTcUSRJZPvNi8qyt1YSQH3li4EHQNBJ', + 'https://dev.apns.getsession.org': LOKIFOUNDATION_APNS_PUBKEY, + 'https://live.apns.getsession.org': LOKIFOUNDATION_APNS_PUBKEY, }; const HOMESERVER_USER_ANNOTATION_TYPE = 'network.loki.messenger.homeserver'; diff --git a/js/modules/loki_push_notification_server_api.js b/js/modules/loki_push_notification_server_api.js index f429af81e..91531a47b 100644 --- a/js/modules/loki_push_notification_server_api.js +++ b/js/modules/loki_push_notification_server_api.js @@ -6,7 +6,7 @@ class LokiPushNotificationServerApi { constructor() { this.ourKey = '642a6585919742e5a2d4dc51244964fbcd8bcab2b75612407de58b810740d049'; - this.serverUrl = 'https://staging.apns.getsession.org'; + this.serverUrl = 'https://live.apns.getsession.org'; this._server = new LokiAppDotNetAPI(this.ourKey, this.serverUrl); // make sure pubKey & pubKeyHex are set in _server