mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
Don't block changeset queue with delivering changeset
This commit is contained in:
parent
1c8b7a3661
commit
cd288c70cb
1 changed files with 4 additions and 1 deletions
|
@ -684,7 +684,10 @@ function handleUserChanges(data, cb)
|
||||||
pad.appendRevision(nlChangeset);
|
pad.appendRevision(nlChangeset);
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.updatePadClients(pad, callback);
|
exports.updatePadClients(pad, function(er) {
|
||||||
|
ERR(er)
|
||||||
|
});
|
||||||
|
callback();
|
||||||
}
|
}
|
||||||
], function(err)
|
], function(err)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue