1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-10-01 04:27:40 +02:00

fixes for keys

This commit is contained in:
Kyle Spearrin 2017-10-26 08:32:04 -04:00
parent f491515904
commit a2480bf2df

View File

@ -395,7 +395,7 @@ function initCipherService() {
};
}
return self.utilsService.saveObjToStorage(key, ciphersLocalData);
return self.utilsService.saveObjToStorage(self.localDataKey, ciphersLocalData);
}).then(function () {
if (!self.decryptedCipherCache) {
return;
@ -485,7 +485,7 @@ function initCipherService() {
}
domains[domain] = null;
return self.utilsService.saveObjToStorage(key, domains);
return self.utilsService.saveObjToStorage(self.neverDomainsKey, domains);
});
};