mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:17:44 +00:00
IRCClient: Make the channel and query mappings case-insensitive.
This allows us to send a message to "nickserv" and receive a response from "NickServ" without getting confused. :^)
This commit is contained in:
parent
9a7b638743
commit
f79f3f6b8c
1 changed files with 2 additions and 2 deletions
|
@ -128,8 +128,8 @@ private:
|
|||
|
||||
String m_nickname;
|
||||
OwnPtr<CNotifier> m_notifier;
|
||||
HashMap<String, RefPtr<IRCChannel>> m_channels;
|
||||
HashMap<String, RefPtr<IRCQuery>> m_queries;
|
||||
HashMap<String, RefPtr<IRCChannel>, CaseInsensitiveStringTraits> m_channels;
|
||||
HashMap<String, RefPtr<IRCQuery>, CaseInsensitiveStringTraits> m_queries;
|
||||
|
||||
Vector<IRCWindow*> m_windows;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue