Add debug output for unrecognized Mendeley DB issue

This commit is contained in:
Dan Stillman 2018-06-09 02:26:12 -04:00
parent 46fc28dc16
commit 8547dedca9

View File

@ -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();
}