From 4613f9593c340dc65b23b28ca247e5116c520419 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 1 Apr 2015 16:43:37 -0400 Subject: [PATCH] Don't update pdfinfo unnecesarily --- chrome/content/zotero/xpcom/schema.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/schema.js b/chrome/content/zotero/xpcom/schema.js index a9917aea8..1ec995ecc 100644 --- a/chrome/content/zotero/xpcom/schema.js +++ b/chrome/content/zotero/xpcom/schema.js @@ -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"); + } } };