diff --git a/chrome/content/zotero/integration/quickFormat.js b/chrome/content/zotero/integration/quickFormat.js index 8fdf7a96e..e1d8af526 100644 --- a/chrome/content/zotero/integration/quickFormat.js +++ b/chrome/content/zotero/integration/quickFormat.js @@ -270,6 +270,9 @@ var Zotero_QuickFormat = new function () { str = str.replace(/ (?:&|and) /g, " ", "g"); if(charRe.test(str)) { Zotero.debug("QuickFormat: QuickSearch: "+str); + // Exclude feeds + Zotero.Feeds.getAll() + .forEach(feed => s.addCondition("libraryID", "isNot", feed.libraryID)); s.addCondition("quicksearch-titleCreatorYear", "contains", str); s.addCondition("itemType", "isNot", "attachment"); haveConditions = true;