diff options
author | George Hazan <ghazan@miranda.im> | 2017-06-29 21:35:04 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-06-29 21:35:04 +0300 |
commit | 1153d92a13cd3c04e2203a1b2b15cfc42b2e52a0 (patch) | |
tree | 6dab14e68aefae25ffdcffdaf9f0829badbf62a7 | |
parent | 13624467f58efb1f28996992d2173ed7099b5807 (diff) |
fixes #785 (Group chat history is not logged if retrieved on login)
-rw-r--r-- | plugins/TabSRMM/src/chat_main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/TabSRMM/src/chat_main.cpp b/plugins/TabSRMM/src/chat_main.cpp index c318231a7c..de304dfc85 100644 --- a/plugins/TabSRMM/src/chat_main.cpp +++ b/plugins/TabSRMM/src/chat_main.cpp @@ -38,6 +38,8 @@ TMUCSettings g_Settings; static void OnCreateSession(SESSION_INFO *si, MODULEINFO *mi)
{
+ if (si->hContact)
+ Chat_SetFilters(si);
if (si->pDlg)
si->pDlg->UpdateStatusBar();
|