1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-07-10 12:55:16 +02:00

null check on lastSync

This commit is contained in:
Kyle Spearrin 2017-02-07 21:45:29 -05:00
parent 88b2d1270a
commit e3bc6443dd

View File

@ -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;
}