diff --git a/src/translation/translate.js b/src/translation/translate.js index 630963c..33c5443 100644 --- a/src/translation/translate.js +++ b/src/translation/translate.js @@ -2044,12 +2044,8 @@ Zotero.Translate.Base.prototype = { if (this.path) { errorString += `\nurl => ${this.path}`; } - if (Zotero.Prefs.get("downloadAssociatedFiles")) { - errorString += "\ndownloadAssociatedFiles => true"; - } - if (Zotero.Prefs.get("automaticSnapshots")) { - errorString += "\nautomaticSnapshots => true"; - } + errorString += "\nautomaticAttachmentTypes => " + Zotero.Prefs.get("automaticAttachmentTypes"); + errorString += "\nautomaticAttachmentTypes.order => " + Zotero.Prefs.get("automaticAttachmentTypes.order"); return errorString; },