summaryrefslogtreecommitdiffstats
path: root/services/sync/modules/service.js
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-06-08 17:12:45 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-06-08 17:12:45 +0200
commitfcf214cb3b72cea4c021258c0bf46d8ead175a08 (patch)
treebd90bb1879e1eeea75e7cba990f110bfd790dcc1 /services/sync/modules/service.js
parent5182fe0455970f1d79d59904604ed3c407ae55ab (diff)
downloadUXP-fcf214cb3b72cea4c021258c0bf46d8ead175a08.tar
UXP-fcf214cb3b72cea4c021258c0bf46d8ead175a08.tar.gz
UXP-fcf214cb3b72cea4c021258c0bf46d8ead175a08.tar.lz
UXP-fcf214cb3b72cea4c021258c0bf46d8ead175a08.tar.xz
UXP-fcf214cb3b72cea4c021258c0bf46d8ead175a08.zip
Partially disentangle FxA from Weave so Pale Moon Sync can work.
Diffstat (limited to 'services/sync/modules/service.js')
-rw-r--r--services/sync/modules/service.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/services/sync/modules/service.js b/services/sync/modules/service.js
index 5c91323b5..5b97fcca3 100644
--- a/services/sync/modules/service.js
+++ b/services/sync/modules/service.js
@@ -1067,6 +1067,7 @@ Sync11Service.prototype = {
// Note: returns false if we failed for a reason other than the server not yet
// supporting the api.
_fetchServerConfiguration() {
+#if 0 // FSyncMS doesn't support this and it will break auth if left enabled!
// This is similar to _fetchInfo, but with different error handling.
let infoURL = this.userBaseURL + "info/configuration";
@@ -1092,6 +1093,7 @@ Sync11Service.prototype = {
this.serverConfiguration = configResponse.obj;
}
this._log.trace("info/configuration for this server", this.serverConfiguration);
+#endif
return true;
},