diff --git a/chrome/content/zotero/xpcom/translation/translate_item.js b/chrome/content/zotero/xpcom/translation/translate_item.js index 3efa9a578..430b60861 100644 --- a/chrome/content/zotero/xpcom/translation/translate_item.js +++ b/chrome/content/zotero/xpcom/translation/translate_item.js @@ -336,7 +336,9 @@ Zotero.Translate.ItemSaver.prototype = { // Determine whether to save an attachment if(attachment.snapshot !== false) { if(attachment.document - || (attachment.mimeType && attachment.mimeType == "text/html")) { + || (attachment.mimeType && + (attachment.mimeType === "text/html" + || attachment.mimeType == "application/xhtml+xml"))) { if(!Zotero.Prefs.get("automaticSnapshots")) return; } else { if(!Zotero.Prefs.get("downloadAssociatedFiles")) return;