diff options
author | George Hazan <ghazan@miranda.im> | 2020-02-19 20:28:04 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-02-19 20:28:04 +0300 |
commit | 74d73e1537585bfc4c33892b9ec47dc523af1ce4 (patch) | |
tree | 5b7dcbf23ad5532184785312be2936bc9f44482a /protocols/Discord/src/groupchat.cpp | |
parent | 51150937be1bbbe52c764c43dac74fafe3da366e (diff) |
if a protocol handles an event, it shall return 1, not 0
Diffstat (limited to 'protocols/Discord/src/groupchat.cpp')
-rw-r--r-- | protocols/Discord/src/groupchat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Discord/src/groupchat.cpp b/protocols/Discord/src/groupchat.cpp index 8b68a6a20b..ee00b1054e 100644 --- a/protocols/Discord/src/groupchat.cpp +++ b/protocols/Discord/src/groupchat.cpp @@ -201,5 +201,5 @@ int CDiscordProto::GroupchatEventHook(WPARAM, LPARAM lParam) break; } - return 0; + return 1; } |