mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-16 10:35:31 +01:00
null check on lastSync
This commit is contained in:
parent
88b2d1270a
commit
e3bc6443dd
@ -65,7 +65,7 @@ function initSyncService() {
|
||||
|
||||
self.apiService.getAccountRevisionDate(function (response) {
|
||||
var accountRevisionDate = new Date(response);
|
||||
if (accountRevisionDate <= lastSync) {
|
||||
if (lastSync && accountRevisionDate <= lastSync) {
|
||||
callback(false);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user