diff options
-rw-r--r-- | stopspam_mod/trunk/stopspam.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/stopspam_mod/trunk/stopspam.cpp b/stopspam_mod/trunk/stopspam.cpp index b3fc3d8..e162837 100644 --- a/stopspam_mod/trunk/stopspam.cpp +++ b/stopspam_mod/trunk/stopspam.cpp @@ -224,11 +224,8 @@ MIRANDA_HOOK_EVENT(ME_DB_EVENT_FILTER_ADD, w, l) DBWriteContactSettingByte(hContact, "CList", "NotOnList", 1);
// save message from contact
- if(!gbIgnoreContacts)
- {
- dbei->flags |= DBEF_READ;
- CallService(MS_DB_EVENT_ADD, (WPARAM)hContact, (LPARAM)dbei);
- }
+ dbei->flags |= DBEF_READ;
+ CallService(MS_DB_EVENT_ADD, (WPARAM)hContact, (LPARAM)dbei);
// reject processing of the event
return 1;
|