diff options
author | George Hazan <ghazan@miranda.im> | 2020-07-30 19:17:40 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-07-30 19:17:40 +0300 |
commit | 09c1b3d79a7630898d48e2d94a7bba4c7e5071ec (patch) | |
tree | bbcfbccbf6a150b32f450069259375c157234fb5 /plugins/Clist_modern | |
parent | 28979a7b8a86d63fcd682f2f041a1c410c18af12 (diff) |
fixes #2503 (TabSRMM: "Send to multiple users" doesn't support Filtering/View modes of Contact List)
Diffstat (limited to 'plugins/Clist_modern')
-rw-r--r-- | plugins/Clist_modern/src/modern_clcitems.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_modern/src/modern_clcitems.cpp b/plugins/Clist_modern/src/modern_clcitems.cpp index 8048ac070b..2e4965ee9c 100644 --- a/plugins/Clist_modern/src/modern_clcitems.cpp +++ b/plugins/Clist_modern/src/modern_clcitems.cpp @@ -415,7 +415,7 @@ int CLVM_GetContactHiddenStatus(MCONTACT hContact, char *szProto, ClcData *dat) searchResult = wcsstr(lowered_name, lowered_search) ? 0 : 1;
}
- if (pdnce && g_CluiData.bFilterEffective && dat != nullptr && !dat->bForceInDialog) {
+ if (pdnce && g_CluiData.bFilterEffective && dat != nullptr) {
if (szProto == nullptr)
szProto = Proto_GetBaseAccountName(hContact);
// check stickies first (priority), only if we really have stickies defined (CLVM_STICKY_CONTACTS is set).
|