Leave ignored 'type:' in Extra (regression from 52d5b6856)

This commit is contained in:
Dan Stillman 2020-03-23 19:05:47 -04:00
parent 0278810cb5
commit c03b9c2733

View file

@ -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;
}