summaryrefslogtreecommitdiff
path: root/indra/newview/llimview.cpp
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2021-02-11 18:45:57 +0200
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2021-02-11 18:49:11 +0200
commit0e3d8023dc08d6b4965e71064c3ac5a2f1e4f180 (patch)
tree5efdfc2f21431ae1e814283550e4fab63437c480 /indra/newview/llimview.cpp
parent03eddbd627a520837d9761740fb3554a7fc5934c (diff)
SL-12795 Fix log session name not updating
Diffstat (limited to 'indra/newview/llimview.cpp')
-rw-r--r--indra/newview/llimview.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp
index b68fec297a..1059324a16 100644
--- a/indra/newview/llimview.cpp
+++ b/indra/newview/llimview.cpp
@@ -602,10 +602,6 @@ LLIMModel::LLIMSession::LLIMSession(const LLUUID& session_id, const std::string&
}
buildHistoryFileName();
- if (isP2P()) // user's account name can change, but filenames are account name based
- {
- LLConversationLog::getInstance()->verifyFilename(mSessionID, mHistoryFileName);
- }
loadHistory();
// Localizing name of ad-hoc session. STORM-153
@@ -973,6 +969,9 @@ void LLIMModel::LLIMSession::buildHistoryFileName()
// Incoming P2P sessions include a name that we can use to build a history file name
mHistoryFileName = LLCacheName::buildUsername(mName);
}
+
+ // user's account name can change, but filenames and session names are account name based
+ LLConversationLog::getInstance()->verifyFilename(mSessionID, mHistoryFileName, av_name.getCompleteName());
}
else if (isGroupChat())
{