remove unnecessary comparison in queue logic
GitOrigin-RevId: 4dd8d1892ca090bd9ac93940d985cb21437f1ae1
This commit is contained in:
@@ -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.)
|
||||
|
||||
Reference in New Issue
Block a user