Fix nick-less PRIVMSGs from servers
This commit is contained in:
parent
22801a629e
commit
6439afd5c6
@ -27,6 +27,12 @@ module.exports = function (irc, network) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
irc.on("privmsg", function (data) {
|
irc.on("privmsg", function (data) {
|
||||||
|
// Some servers send messages without any nickname
|
||||||
|
if (!data.nick) {
|
||||||
|
data.from_server = true;
|
||||||
|
data.nick = data.hostname || network.host;
|
||||||
|
}
|
||||||
|
|
||||||
data.type = Msg.Type.MESSAGE;
|
data.type = Msg.Type.MESSAGE;
|
||||||
handleMessage(data);
|
handleMessage(data);
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user