change test channel to #irctokens
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Ben Harris 2020-09-29 13:37:58 -04:00
parent 7a478f0503
commit 1ac3d27bd6
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ namespace StatesSample
Send($"PONG :{line.Params[0]}");
break;
case Numeric.RPL_WELCOME:
if (!_server.HasChannel("#test")) Send("JOIN #test");
if (!_server.HasChannel("#irctokens")) Send("JOIN #irctokens");
break;
}
}

View File

@ -52,7 +52,7 @@ namespace TokensSample
Send(new Line("PONG", line.Params[0]));
break;
case "001":
Send(new Line("JOIN", "#test"));
Send(new Line("JOIN", "#irctokens"));
break;
case "PRIVMSG":
Send(new Line("PRIVMSG", line.Params[0], "hello there"));