Closed bjohas closed 4 years ago
propose:
if (EdTechHub.ItemAlsoKnownAs.includes('; ') {
array = EdTechHub.ItemAlsoKnownAs.split(/; +/);
} else {
array = EdTechHub.ItemAlsoKnownAs.split(";");
};
var EdTechHub.ItemAlsoKnownAs.sort().join("; ")
:robot: this is your friendly neighborhood build bot announcing test build 0.0.26.253 ("remove extra space from merge AKA then sort fixes #69")
Install in Zotero by downloading test build 0.0.26.253, opening the Zotero "Tools" menu, selecting "Add-ons", open the gear menu in the top right, and select "Install Add-on From File...".
"Save Item ID" does not deduplicate entries. With every "save item id" the string gets longer. This is because we split on ";" and then do not remove the " " at the start.
Suggested solution: