Target selector: Don't lose recent targets when saving to same target

A target could fill up the list from different sessions, pushing other
recents out.
This commit is contained in:
Dan Stillman 2018-04-06 04:27:58 -04:00
parent 7d424f6d12
commit 222bb5bad4

View File

@ -263,10 +263,13 @@ Zotero.Server.Connector.SaveSession.prototype._updateRecents = function () {
}
// Otherwise add this target to the end
if (!sessionFound) {
recents.push({
id: targetID,
sessionID: this.id
});
recents
// Remove this target from the list if it's there from another session
.filter(r => r.id != targetID)
.concat({
id: targetID,
sessionID: this.id
});
}
recents = recents.slice(-1 * numRecents);
Zotero.Prefs.set('recentSaveTargets', JSON.stringify(recents));