1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 06:18:12 +00:00

IRCClient: Only notify about channel messages containing our nickname

This commit is contained in:
Andreas Kling 2020-03-26 20:18:22 +01:00
parent 163812df97
commit 3c29818048
2 changed files with 30 additions and 17 deletions

View file

@ -68,6 +68,8 @@ public:
private:
IRCWindow(IRCClient&, void* owner, Type, const String& name);
void post_notification_if_needed(const String& name, const String& message);
IRCClient& m_client;
void* m_owner { nullptr };
Type m_type;