fix #1319: removed a storage request for invalid passwords

This commit is contained in:
antelle 2019-10-26 14:43:34 +02:00
parent 2ca5f93e8b
commit c7eb8caf8b
2 changed files with 7 additions and 0 deletions

View File

@ -492,6 +492,9 @@ class AppModel {
params,
(err, file) => {
if (err) {
if (err.name === 'KdbxError') {
return callback(err);
}
logger.info(
'Error loading file from cache, trying to open from storage',
err
@ -515,6 +518,9 @@ class AppModel {
setTimeout(() => this.syncFile(file), 0);
callback(err);
} else {
if (err.name === 'KdbxError') {
return callback(err);
}
logger.info(
'Error loading file from cache, trying to open from storage',
err

View File

@ -11,6 +11,7 @@ Release notes
`+` #1310: password generator on the start screen
`-` fix #1273: untranslated menu items
`-` fix #1311: better monospace fonts
`-` fix #1319: removed a storage request for invalid passwords
##### v1.11.10 (2019-10-16)
`-` fix #1305: WebDAV issues