Limit OA PDF lookup to dev builds

This commit is contained in:
Dan Stillman 2018-07-07 13:12:33 +02:00
parent 2ebc78adc0
commit 62e403bc55

View file

@ -69,7 +69,9 @@ var Zotero_Lookup = new function () {
collections: collection ? [collection.id] : false
});
// If there's a DOI and we don't yet have a file, check for open-access PDFs
if (identifier.DOI && !newItems.find(x => x.isImportedAttachment())) {
// TEMP: Limit to dev builds
if ((Zotero.version.includes('beta') || Zotero.version.includes('SOURCE'))
&& identifier.DOI && !newItems.find(x => x.isImportedAttachment())) {
try {
yield Zotero.Attachments.addOpenAccessPDF(newItems[0]);
}