diff --git a/chrome/content/zotero/xpcom/schema.js b/chrome/content/zotero/xpcom/schema.js index e09c9a6ed..d198ad2f1 100644 --- a/chrome/content/zotero/xpcom/schema.js +++ b/chrome/content/zotero/xpcom/schema.js @@ -526,6 +526,10 @@ Zotero.Schema = new function(){ * update the local scrapers table with the scraper data **/ function _translatorXMLToDB(xmlnode){ + // Don't split >4K chunks into multiple nodes + // https://bugzilla.mozilla.org/show_bug.cgi?id=194231 + xmlnode.normalize(); + var sqlValues = [ {string: xmlnode.getAttribute('id')}, {string: xmlnode.getAttribute('lastUpdated')},