Sometimes the Nick is created but not filled in

This commit is contained in:
raylu 2010-10-26 18:43:09 -04:00
parent 2c1e5641ab
commit 78d5511cf8
1 changed files with 3 additions and 0 deletions

View File

@ -20,6 +20,9 @@ func readAuth() {
}
func user(nick *irc.Nick) string {
if nick.Ident == "" || nick.Host == "" {
return ""
}
if nick.Ident[0] == '~' {
return nick.Ident[1:] + "@" + nick.Host
}