Skip to content
Snippets Groups Projects
Commit 621afc68 authored by dionoea's avatar dionoea
Browse files

Don't print welcome message if it's empty.

parent 4cf0140c
No related branches found
No related tags found
No related merge requests found
......@@ -562,7 +562,7 @@ do
end
end
list = list..")"
if count ~= 0 and env.welcome then
if count ~= 0 and env.welcome and env.welcome ~= "" then
env.welcome = env.welcome .. "\r\nWarning: "..count.." functions are still unimplemented "..list.."."
end
end
......@@ -623,7 +623,9 @@ h = host.host()
-- No auth
h.status_callbacks[host.status.password] = function(client)
client.env = common.table_copy( env )
client:send( client.env.welcome .. "\r\n")
if client.env.welcome ~= "" then
client:send( client.env.welcome .. "\r\n")
end
client:switch_status(host.status.read)
end
-- Print prompt when switching a client's status to `read'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment