1
Fork 0

Fix localMessage call to addToChatbox.

Commit b527c8757a added the `kind`
parameter to `addToChatbox`, but the change wasn't reflected here.
This commit is contained in:
Antonin Décimo 2021-08-07 16:39:00 +03:00 committed by Juliusz Chroboczek
parent 3e09c0ab29
commit e99aa7d498
1 changed files with 2 additions and 1 deletions

View File

@ -2400,7 +2400,7 @@ function addToChatbox(peerId, dest, nick, time, privileged, history, kind, messa
* @param {string} message
*/
function localMessage(message) {
return addToChatbox(null, null, null, Date.now(), false, null, message);
return addToChatbox(null, null, null, Date.now(), false, false, '', message);
}
function clearChat() {
@ -2857,6 +2857,7 @@ function handleInput() {
try {
c.f(cmd, rest);
} catch(e) {
console.error(e);
displayError(e);
}
return;