mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03: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
Notes:
sideshowbarker
2024-07-19 13:18:24 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/f79f3f6b8c9
@ -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…
Reference in New Issue
Block a user