remove unnecessary comparison in queue logic

GitOrigin-RevId: 4dd8d1892ca090bd9ac93940d985cb21437f1ae1
This commit is contained in:
Brian Gough 2019-03-28 10:17:10 +00:00 committed by sharelatex
parent 9a48142919
commit ce556499c0

View file

@ -179,7 +179,7 @@ define(['utils/EventEmitter', 'libs/sharejs'], function(EventEmitter, ShareJs) {
)
this.processUpdateFromServerInOrder(this.queuedMessages.shift())
break
} else if (nextAvailableVersion <= this._doc.version) {
} else if (nextAvailableVersion < this._doc.version) {
// discard old updates if they are in the queue (since we are only
// putting updates ahead of the current version in the queue this
// shouldn't happen, but we handle it anyway for safety.)