1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-26 17:03:12 +03:00

Tweak duplicateStrategy code to reduce diff

This commit is contained in:
Richard van der Hoff
2016-01-15 13:23:51 +00:00
parent 706966ffe9
commit e68ab7d54a

View File

@@ -541,11 +541,10 @@ Room.prototype.addEvents = function(events, duplicateStrategy) {
// N.B. account_data is added directly by /sync to avoid
// having to maintain an event.isAccountData() here
else {
if (duplicateStrategy) {
var timeline = this._eventIdToTimeline[events[i].getId()];
if (timeline && duplicateStrategy) {
// is there a duplicate?
var shouldIgnore = false;
var timeline = this._eventIdToTimeline[events[i].getId()];
if (timeline) {
var tlEvents = timeline.getEvents();
for (var j = 0; j < tlEvents.length; j++) {
if (tlEvents[j].getId() === events[i].getId()) {
@@ -570,7 +569,6 @@ Room.prototype.addEvents = function(events, duplicateStrategy) {
}
}
}
}
if (shouldIgnore) {
continue; // skip the insertion of this event.
}