Ignore empty messages in socket.io

merge-requests/1/head
knotteye 5 years ago
parent 73e91783e3
commit 4e19bdc2f5
  1. 1
      src/http.ts

@ -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);
});