Skip to content
Snippets Groups Projects
Commit 9ab92603 authored by Mnikolenko ProductEngine's avatar Mnikolenko ProductEngine
Browse files

CHUI-936 FIXED Do not show Conversation log floater if logging is disabled.

parent 3c2c897c
No related branches found
No related tags found
No related merge requests found
...@@ -215,7 +215,8 @@ void LLDoNotDisturbNotificationStorage::loadNotifications() ...@@ -215,7 +215,8 @@ void LLDoNotDisturbNotificationStorage::loadNotifications()
LLFloaterReg::showInstance("im_container"); LLFloaterReg::showInstance("im_container");
} }
if(group_ad_hoc_toast_exists) bool isConversationLoggingAllowed = gSavedPerAccountSettings.getS32("KeepConversationLogTranscripts") > 0;
if(group_ad_hoc_toast_exists && isConversationLoggingAllowed)
{ {
LLFloaterReg::showInstance("conversation"); LLFloaterReg::showInstance("conversation");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment