Don't update pdfinfo unnecesarily

This commit is contained in:
Dan Stillman 2015-04-01 16:43:37 -04:00
parent e567ad25aa
commit 4613f9593c

View file

@ -1666,9 +1666,12 @@ Zotero.Schema = new function(){
else if (installConverter) {
Zotero.Fulltext.downloadPDFTool('converter', availableVersion, checkResult);
}
else {
else if (installInfo) {
Zotero.Fulltext.downloadPDFTool('info', availableVersion, checkResult);
}
else {
Zotero.debug("PDF tools are up to date");
}
}
};