From 8547dedca916f012d6338de731ab2c2a18ea42a9 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 9 Jun 2018 02:26:12 -0400 Subject: [PATCH] Add debug output for unrecognized Mendeley DB issue --- chrome/content/zotero/fileInterface.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/chrome/content/zotero/fileInterface.js b/chrome/content/zotero/fileInterface.js index f47d9258d..9530d63a7 100644 --- a/chrome/content/zotero/fileInterface.js +++ b/chrome/content/zotero/fileInterface.js @@ -340,6 +340,14 @@ var Zotero_File_Interface = new function() { defaultNewCollectionPrefix = "Mendeley Import"; } else { + // TEMP + if (file.path.endsWith('.sqlite')) { + let codes = []; + for (let i = 0; i < sample.length; i++) { + codes.push(sample.charCodeAt(i)); + } + Zotero.debug(codes.join(' ')); + } translation = new Zotero.Translate.Import(); }