[listener] Prevent irc nick from becoming null

This commit is contained in:
Hylke Bons 2010-11-20 23:18:55 +00:00
parent d9d50195d9
commit dd9c1db9f6

View file

@ -41,12 +41,12 @@ namespace SparkleLib {
Server = server;
Channel = channel;
Nick = nick;
//TODO: check why nick is sometimes null
if (Nick != null)
Nick = nick.Replace ("@", "_at_").Replace (".", "_dot_");
if (!Nick.Equals (""))
Nick = nick.Replace ("@", "_at_").Replace (".", "_dot_");
else
Nick = "oops";
Nick = "anonymous";
// Keep the nick short
if (Nick.Length > 9)