From c03b9c27331a65ae610cf7f09d8ea7a87cded36e Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 23 Mar 2020 19:05:47 -0400 Subject: [PATCH] Leave ignored 'type:' in Extra (regression from 52d5b6856) --- chrome/content/zotero/xpcom/utilities_internal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/utilities_internal.js b/chrome/content/zotero/xpcom/utilities_internal.js index 4b1b9919a3..1c1350d363 100644 --- a/chrome/content/zotero/xpcom/utilities_internal.js +++ b/chrome/content/zotero/xpcom/utilities_internal.js @@ -1039,7 +1039,7 @@ Zotero.Utilities.Internal = { lines = lines.filter((line) => { let [key, value] = getKeyAndValue(line); - if (!key || skipKeys.has(key)) { + if (!key || skipKeys.has(key) || key == 'type') { return true; }