Notification translation fix, #3526

This commit is contained in:
Ylian Saint-Hilaire 2022-01-24 08:12:05 -08:00
parent 8cef32de95
commit 106c3ca461

View File

@ -5135,7 +5135,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
obj.send({ action: 'adduser', responseid: command.responseid, result: err, msgid: errid }); obj.send({ action: 'adduser', responseid: command.responseid, result: err, msgid: errid });
} else { } else {
// Send error back, user not found. // Send error back, user not found.
displayNotificationMessage(err, "New Account", 'ServerNotify', null, 1, errid); displayNotificationMessage(err, "New Account", 'ServerNotify', 1, errid);
} }
return; return;
} }