Fix a potential bug in integration plugin when field codes are corrupt

This commit is contained in:
Adomas Venčkauskas 2022-12-14 16:20:44 +02:00
parent 75aa17f169
commit c12e5659ab

View file

@ -2931,7 +2931,7 @@ Zotero.Integration.CitationField = class extends Zotero.Integration.Field {
Zotero.Integration.currentDoc.activate();
var result = await Zotero.Integration.currentSession.displayAlert(msg, DIALOG_ICON_CAUTION, DIALOG_BUTTONS_YES_NO_CANCEL);
if (result == 0) { // Cancel
return new Zotero.Exception.UserCancelled("corrupt citation resolution");
throw new Zotero.Exception.UserCancelled("corrupt citation resolution");
} else if (result == 1) { // No
return false;
} else { // Yes