diff options
Diffstat (limited to 'services/sync/modules/resource.js')
-rw-r--r-- | services/sync/modules/resource.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/services/sync/modules/resource.js b/services/sync/modules/resource.js index 1c2a67b90..b31d129a5 100644 --- a/services/sync/modules/resource.js +++ b/services/sync/modules/resource.js @@ -7,10 +7,10 @@ this.EXPORTED_SYMBOLS = [ "Resource" ]; -const Cc = Components.classes; -const Ci = Components.interfaces; -const Cr = Components.results; -const Cu = Components.utils; +var Cc = Components.classes; +var Ci = Components.interfaces; +var Cr = Components.results; +var Cu = Components.utils; Cu.import("resource://gre/modules/Preferences.jsm"); Cu.import("resource://services-common/async.js"); @@ -174,7 +174,7 @@ AsyncResource.prototype = { if (this.authenticator) { let result = this.authenticator(this, method); if (result && result.headers) { - for (let [k, v] in Iterator(result.headers)) { + for (let [k, v] of Object.entries(result.headers)) { headers[k.toLowerCase()] = v; } } @@ -182,7 +182,7 @@ AsyncResource.prototype = { this._log.debug("No authenticator found."); } - for (let [key, value] in Iterator(headers)) { + for (let [key, value] of Object.entries(headers)) { if (key == 'authorization') this._log.trace("HTTP Header " + key + ": ***** (suppressed)"); else |