db/API.js: early return, no functional changes

pull/3478/head
muxator 2018-08-29 02:10:45 +02:00
parent 42bc0a59e1
commit fef57efd46
1 changed files with 2 additions and 2 deletions

View File

@ -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);
} );
}