Fix breakage in 067980973
This commit is contained in:
parent
0679809735
commit
440b65935e
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
|
||||
await setIntegrityCheckRequired(false);
|
||||
yield setIntegrityCheckRequired(false);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1919,7 +1919,7 @@ Zotero.Schema = new function(){
|
|||
|
||||
// Clear flag on success
|
||||
if (fix) {
|
||||
await setIntegrityCheckRequired(false);
|
||||
yield setIntegrityCheckRequired(false);
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Add table
Reference in a new issue