diff options
author | Cho <cho@lindenlab.com> | 2013-02-11 20:02:19 +0000 |
---|---|---|
committer | Cho <cho@lindenlab.com> | 2013-02-11 20:02:19 +0000 |
commit | 33d49d15693de15527960476b816845f8b3d6d54 (patch) | |
tree | 08be5fffff2490d546c01ba3aacdb014b0eb87c2 /indra/newview/llconversationlog.cpp | |
parent | 5066e850df6e44e65bf7760ac990fdd5ed1c7b8e (diff) |
CHUI-755 FIX Conversation log changes in a session are lost if viewer crashes
Added call to LLConversationLog::instance().cache() after LLLogChat::SaveHistory() in LLIMView::logToFile()
Diffstat (limited to 'indra/newview/llconversationlog.cpp')
-rw-r--r-- | indra/newview/llconversationlog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llconversationlog.cpp b/indra/newview/llconversationlog.cpp index 82176b3a06..4e707ac76e 100644 --- a/indra/newview/llconversationlog.cpp +++ b/indra/newview/llconversationlog.cpp @@ -276,7 +276,7 @@ void LLConversationLog::updateConversationName(const LLIMModel::LLIMSession* ses LLConversation* conversation = findConversation(session); if (conversation) { - conversation->setConverstionName(name); + conversation->setConversationName(name); notifyParticularConversationObservers(conversation->getSessionID(), LLConversationLogObserver::CHANGED_NAME); } } |