mirror of
https://git.waldn.net/git/knotteye/satyr.git
synced 2025-04-21 03:07:10 +00:00
Ignore empty messages in socket.io
This commit is contained in:
parent
73e91783e3
commit
4e19bdc2f5
@ -182,6 +182,7 @@ async function init(satyr: any, port: number, ircconf: any){
|
||||
}
|
||||
});
|
||||
socket.on('MSG', (data) => {
|
||||
if(data.msg === "") return;
|
||||
io.to(data.room).emit('MSG', {nick: socket.nick, msg: data.msg});
|
||||
if(ircconf.enable) irc.send(socket.nick, data.room, data.msg);
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user