From 15dd4b6c60fa79867ea793159d95590c1260ba50 Mon Sep 17 00:00:00 2001 From: Mark Hammond Date: Wed, 30 Apr 2014 17:42:51 +1000 Subject: [PATCH] Bug 972100 - avoid an info/collections call as sync starts. r=rnewman --- services/sync/modules/service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/sync/modules/service.js b/services/sync/modules/service.js index 872b6393eae..42f6707a46a 100644 --- a/services/sync/modules/service.js +++ b/services/sync/modules/service.js @@ -711,7 +711,7 @@ Sync11Service.prototype = { // Go ahead and do remote setup, so that we can determine // conclusively that our passphrase is correct. - if (this._remoteSetup()) { + if (this._remoteSetup(test)) { // Username/password verified. this.status.login = LOGIN_SUCCEEDED; return true;