diff options
| -rw-r--r-- | indra/newview/llconversationlog.cpp | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/newview/llconversationlog.cpp b/indra/newview/llconversationlog.cpp index b6713465f3..486cea4064 100644 --- a/indra/newview/llconversationlog.cpp +++ b/indra/newview/llconversationlog.cpp @@ -238,10 +238,8 @@ void LLConversationLog::cache()  std::string LLConversationLog::getFileName()  { -	std::string agent_id_string; -	gAgent.getID().toString(agent_id_string); - -	return gDirUtilp->getExpandedFilename(LL_PATH_PER_SL_ACCOUNT, agent_id_string) + ".call_log"; +	std::string filename = "conversation"; +	return gDirUtilp->getExpandedFilename(LL_PATH_PER_SL_ACCOUNT, filename) + ".log";  }  bool LLConversationLog::saveToFile(const std::string& filename)  | 
