From a7beebcd177a415464b2abdfedb4606d5ca7704c Mon Sep 17 00:00:00 2001 From: Avital Oliver Date: Thu, 6 Sep 2012 12:33:59 -0700 Subject: [PATCH] Add an XXX --- packages/accounts/localstorage_token.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/accounts/localstorage_token.js b/packages/accounts/localstorage_token.js index 84db0cc42f..9d14a7fcfa 100644 --- a/packages/accounts/localstorage_token.js +++ b/packages/accounts/localstorage_token.js @@ -93,7 +93,7 @@ Meteor.accounts._pollStoredLoginToken = function() { // != instead of !== just to make sure undefined and null are treated the same if (Meteor.accounts._lastLoginTokenWhenPolled != currentLoginToken) { if (currentLoginToken) - Meteor.loginWithToken(currentLoginToken); + Meteor.loginWithToken(currentLoginToken); // XXX should we pass a callback here? else Meteor.logout(); }