Don't block changeset queue with delivering changeset

This commit is contained in:
Marcel Klehr 2013-04-17 14:26:11 +02:00
parent 1c8b7a3661
commit cd288c70cb
1 changed files with 4 additions and 1 deletions

View File

@ -684,7 +684,10 @@ function handleUserChanges(data, cb)
pad.appendRevision(nlChangeset);
}
exports.updatePadClients(pad, callback);
exports.updatePadClients(pad, function(er) {
ERR(er)
});
callback();
}
], function(err)
{