Commit 69bb1201 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix omitted break in gotUserMessage.

parent 43ed55a0
......@@ -1569,6 +1569,7 @@ function gotUserMessage(id, dest, username, time, privileged, kind, message) {
} else {
console.error(`Got unprivileged message of kind ${kind}`);
}
break;
default:
console.warn(`Got unknown user message ${kind}`);
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment