summaryrefslogtreecommitdiff
path: root/plugins/New_GPG
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2020-06-23 20:13:32 +0300
committerGeorge Hazan <ghazan@miranda.im>2020-06-23 20:13:32 +0300
commitf5333c257d4b23bb5f37ab3380dd69191f71429c (patch)
treeb378d4326e904a888f5bb82d69eaa1758131ee6d /plugins/New_GPG
parent74d117e4355b71d7a5660c5b9b67d24df8bfa4c7 (diff)
Jabber to filter out encrypted outgoing carbon copies
Diffstat (limited to 'plugins/New_GPG')
-rwxr-xr-xplugins/New_GPG/src/messages.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/New_GPG/src/messages.cpp b/plugins/New_GPG/src/messages.cpp
index f446f5907e..f10efdd76a 100755
--- a/plugins/New_GPG/src/messages.cpp
+++ b/plugins/New_GPG/src/messages.cpp
@@ -689,8 +689,8 @@ int HookSendMsg(WPARAM w, LPARAM l)
if (!l)
return 0;
- DBEVENTINFO * dbei = (DBEVENTINFO*)l;
- if (dbei->eventType != EVENTTYPE_MESSAGE)
+ DBEVENTINFO *dbei = (DBEVENTINFO*)l;
+ if (dbei->eventType != EVENTTYPE_MESSAGE || (dbei->flags & DBEF_READ))
return 0;
MCONTACT hContact = (MCONTACT)w;