Use hostname from notice if available

This commit is contained in:
Pavel Djundik 2020-01-19 00:53:03 +02:00
parent 304e8bf5b0
commit 4d3fd1c8f2
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ module.exports = function(irc, network) {
// Some servers send notices without any nickname // Some servers send notices without any nickname
if (!data.nick) { if (!data.nick) {
data.from_server = true; data.from_server = true;
data.nick = network.host; data.nick = data.hostname || network.host;
} }
data.type = Msg.Type.NOTICE; data.type = Msg.Type.NOTICE;