Put Scite cleanup code in a try/catch
Just to be safe
This commit is contained in:
parent
f8e9aa147b
commit
d14a8b1d92
1 changed files with 6 additions and 1 deletions
|
@ -191,7 +191,12 @@ Zotero.Schema = new function(){
|
|||
}
|
||||
|
||||
// TEMP
|
||||
await _fixSciteValues();
|
||||
try {
|
||||
await _fixSciteValues();
|
||||
}
|
||||
catch (e) {
|
||||
Zotero.logError(e);
|
||||
}
|
||||
|
||||
updated = await _migrateUserDataSchema(userdata, options);
|
||||
await _updateSchema('triggers');
|
||||
|
|
Loading…
Reference in a new issue