Fix more breakage in 067980973
This commit is contained in:
parent
ad6c3f7a09
commit
c3e390eb5a
1 changed files with 2 additions and 2 deletions
|
@ -1910,7 +1910,7 @@ Zotero.Schema = new function(){
|
|||
Zotero.logError(e);
|
||||
// Clear flag on failure, to avoid showing an error on every startup if someone
|
||||
// doesn't know how to deal with it
|
||||
yield setIntegrityCheckRequired(false);
|
||||
yield this.setIntegrityCheckRequired(false);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1919,7 +1919,7 @@ Zotero.Schema = new function(){
|
|||
|
||||
// Clear flag on success
|
||||
if (fix) {
|
||||
yield setIntegrityCheckRequired(false);
|
||||
yield this.setIntegrityCheckRequired(false);
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue