mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Sanity check on message channel.
Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
This commit is contained in:
parent
252b33b73f
commit
fe4625839b
1 changed files with 2 additions and 1 deletions
|
@ -96,9 +96,10 @@
|
|||
if (channel !== "chat") return;
|
||||
message = JSON.parse(message);
|
||||
|
||||
if (!message.channel) message.channel = 'domain'; // We don't know where to put this message. Assume it is a domain wide message.
|
||||
|
||||
// Floofchat compatibility hook
|
||||
message = floofChatCompatibilityConversion(message);
|
||||
|
||||
message.channel = message.channel.toLowerCase(); // Make sure the "local", "domain", etc. is formatted consistently
|
||||
|
||||
if (!channels.includes(message.channel)) return; // Check the channel
|
||||
|
|
Loading…
Reference in a new issue