diff options
author | Kirill Volinsky <Mataes2007@gmail.com> | 2018-03-15 13:46:49 +0300 |
---|---|---|
committer | Kirill Volinsky <Mataes2007@gmail.com> | 2018-03-15 13:46:49 +0300 |
commit | 648a4f37816f67a88ae9a750b8307064225e7603 (patch) | |
tree | 220e9f6db891887a84283d06bea50921878a5061 /plugins/TabSRMM | |
parent | 9d58e2b2193015ce974bf6facef6bf0a6d142fdc (diff) |
TabSRMM: fixed rss protocol name
Diffstat (limited to 'plugins/TabSRMM')
-rw-r--r-- | plugins/TabSRMM/src/eventpopups.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/eventpopups.cpp b/plugins/TabSRMM/src/eventpopups.cpp index 4b022070db..b1759de869 100644 --- a/plugins/TabSRMM/src/eventpopups.cpp +++ b/plugins/TabSRMM/src/eventpopups.cpp @@ -769,7 +769,7 @@ int tabSRMM_ShowPopup(MCONTACT hContact, MEVENT hDbEvent, WORD eventType, int wi return 0;
}
}
- if (nen_options.bNoRSS && szProto != nullptr && !strncmp(szProto, "RSS", 3))
+ if (nen_options.bNoRSS && szProto != nullptr && !strncmp(szProto, "NewsAggregator", 3))
return 0; // filter out RSS popups
if (windowOpen && pContainer != nullptr) { // message window is open, need to check the container config if we want to see a popup nonetheless
|