Skip to content
Snippets Groups Projects
Commit 40077972 authored by seth_productengine's avatar seth_productengine
Browse files

STORM-1111 FIXED Disabled re-loging the nearby chat history to file upon...

STORM-1111 FIXED Disabled re-loging the nearby chat history to file upon processing the chat style update.
parent 88a72623
No related branches found
No related tags found
No related merge requests found
......@@ -250,9 +250,13 @@ void LLNearbyChat::getAllowedRect(LLRect& rect)
void LLNearbyChat::updateChatHistoryStyle()
{
mChatHistory->clear();
LLSD do_not_log;
do_not_log["do_not_log"] = true;
for(std::vector<LLChat>::iterator it = mMessageArchive.begin();it!=mMessageArchive.end();++it)
{
addMessage(*it,false);
// Update the messages without re-writing them to a log file.
addMessage(*it,false, do_not_log);
}
}
......
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