www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 4613f9593c340dc65b23b28ca247e5116c520419
parent e567ad25aa1d32ede8f752f24dcbeaece905fedd
Author: Dan Stillman <dstillman@zotero.org>
Date:   Wed,  1 Apr 2015 16:43:37 -0400

Don't update pdfinfo unnecesarily

Diffstat:
Mchrome/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 @@ -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"); + } } };