1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2025-02-16 23:10:11 -05:00

IRCConnection: onJoin() - ignore case of nickname

This commit is contained in:
Sebastian Kaspari 2010-04-17 22:50:30 +02:00
parent 7936a5bec3
commit 43a6682803

View File

@ -299,7 +299,7 @@ public class IRCConnection extends PircBot
@Override
protected void onJoin(String target, String sender, String login, String hostname)
{
if (sender.equals(getNick())) {
if (sender.equalsIgnoreCase(getNick())) {
// We joined a new channel
server.addConversationl(new Channel(target));