mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 22:23:33 +01:00
db/API.js: early return, no functional changes
This commit is contained in:
parent
42bc0a59e1
commit
fef57efd46
1 changed files with 2 additions and 2 deletions
|
@ -1116,9 +1116,9 @@ exports.sendClientsMessage = function (padID, msg, callback) {
|
|||
getPadSafe(padID, true, function (err, pad) {
|
||||
if (ERR(err, callback)) {
|
||||
return;
|
||||
} else {
|
||||
padMessageHandler.handleCustomMessage(padID, msg, callback);
|
||||
}
|
||||
|
||||
padMessageHandler.handleCustomMessage(padID, msg, callback);
|
||||
} );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue