mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-12-24 01:30:38 +01:00
Check field before crashing IRC
This commit is contained in:
parent
ba5d1476c0
commit
0818c7996f
@ -77,7 +77,10 @@ end
|
||||
|
||||
local function needNewNick(conn, msg)
|
||||
local newnick = conn.nickGenerator(msg.args[2])
|
||||
conn:queue(msg.nick(newnick))
|
||||
if msg.nick then
|
||||
conn:queue(msg.nick(newnick))
|
||||
end
|
||||
-- Ugly hack to fix crash
|
||||
end
|
||||
|
||||
-- ERR_ERRONEUSNICKNAME (Misspelt but remains for historical reasons)
|
||||
|
Loading…
Reference in New Issue
Block a user