1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 22:33:35 +00:00

set last sync on sync service

This commit is contained in:
Kyle Spearrin
2017-01-24 00:30:45 -05:00
parent b0a7b88585
commit a55a70564f

View File

@@ -35,12 +35,11 @@ function initSyncService() {
} }
syncVault(userId).then(function () { syncVault(userId).then(function () {
syncSettings(userId).then(function () { return syncSettings(userId);
}).then(function () {
self.setLastSync(new Date(), function () {
self.syncCompleted(true); self.syncCompleted(true);
callback(true); callback(true);
}, function () {
self.syncCompleted(false);
callback(false);
}); });
}, function () { }, function () {
self.syncCompleted(false); self.syncCompleted(false);