Sync from server even when not logged in

print-window-tiddler
Jermolene 2014-02-11 19:10:40 +00:00
rodzic 7a62a86baf
commit 190ced7cdd
1 zmienionych plików z 2 dodań i 4 usunięć

Wyświetl plik

@ -65,10 +65,8 @@ function Syncer(options) {
}
// Get the login status
this.getStatus(function (err,isLoggedIn) {
if(isLoggedIn) {
// Do a sync from the server
self.syncFromServer();
}
// Do a sync from the server
self.syncFromServer();
});
}