summaryrefslogtreecommitdiff
path: root/plugins/SecureIM/src/crypt_check.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-07-08 18:03:05 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-07-08 18:03:05 +0000
commit1a9ce756b4b7b00e9e11275890877328910a1c20 (patch)
tree997dab875b89ba994c6fa22ea9e47a9a895a8164 /plugins/SecureIM/src/crypt_check.cpp
parent263d0de0c55f0c3c74ca6ddd041927f9913a6434 (diff)
- minor code reordering
git-svn-id: http://svn.miranda-ng.org/main/trunk@9734 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM/src/crypt_check.cpp')
-rw-r--r--plugins/SecureIM/src/crypt_check.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SecureIM/src/crypt_check.cpp b/plugins/SecureIM/src/crypt_check.cpp
index e2d8ef27b9..ae19be8d5f 100644
--- a/plugins/SecureIM/src/crypt_check.cpp
+++ b/plugins/SecureIM/src/crypt_check.cpp
@@ -96,7 +96,7 @@ bool isProtoSmallPackets(MCONTACT hContact)
bool isContactInvisible(MCONTACT hContact)
{
- if (db_get_b(hContact, "CList", "Hidden", 0))
+ if (!db_mc_isSub(hContact) && db_get_b(hContact, "CList", "Hidden", 0))
return true;
pUinKey p = findUinKey(hContact);