Put Scite cleanup code in a try/catch

Just to be safe
This commit is contained in:
Dan Stillman 2022-03-22 05:01:25 -04:00
parent f8e9aa147b
commit d14a8b1d92

View file

@ -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');