Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
irc bot: adding new irc server address determining if the bot is runn…
Browse files Browse the repository at this point in the history
…ing inside Red Hat network or not
  • Loading branch information
jkremser committed Nov 20, 2014
1 parent 288fac0 commit 46c9477
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -101,7 +101,7 @@ private static enum Command {
public RhqIrcBotListener(String server, String channel) {
this.server = server;
this.channel = channel;
isRedHatChannel = "irc.devel.redhat.com".equals(server);
isRedHatChannel = "irc.devel.redhat.com".equals(server) || "irc.lab.bos.redhat.com".equals(server);
if (isRedHatChannel)
System.out.print("Red Hat channel");
StringBuilder commandRegExp = new StringBuilder();
Expand Down

0 comments on commit 46c9477

Please sign in to comment.