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:
parent
7936a5bec3
commit
43a6682803
@ -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));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user