diff options
author | George Hazan <george.hazan@gmail.com> | 2014-05-03 18:04:15 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-05-03 18:04:15 +0000 |
commit | 61444e41cdfbad3ebfb487bf91dd7da46f1e4c52 (patch) | |
tree | 4a9d2d292bb0d85c0b621ca7a7c05ad185ad301b /plugins/Db3x_mmap | |
parent | 8054c771852aec548f4d648cafafc8fd6c1bf08e (diff) |
fix for ignoring subs
git-svn-id: http://svn.miranda-ng.org/main/trunk@9118 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Db3x_mmap')
-rw-r--r-- | plugins/Db3x_mmap/src/dbsettings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Db3x_mmap/src/dbsettings.cpp b/plugins/Db3x_mmap/src/dbsettings.cpp index f87eb3b221..643e190521 100644 --- a/plugins/Db3x_mmap/src/dbsettings.cpp +++ b/plugins/Db3x_mmap/src/dbsettings.cpp @@ -223,7 +223,7 @@ LBL_Seek: }
// try to get the missing mc setting from the active sub
- if (cc && cc->IsMeta() && strcmp(szModule, "CList")) {
+ if (cc && cc->IsMeta() && !(!strcmp(szModule, META_PROTO) || !strcmp(szModule, "Ignore"))) {
contactID = db_mc_getDefault(contactID);
goto LBL_Seek;
}
|