From f89a5aaa27006dfc1b0661b158ae70045d39f82c Mon Sep 17 00:00:00 2001 From: Shyotl Date: Tue, 3 May 2016 01:54:50 -0500 Subject: [PATCH] Eups. Fix chatlog and user dir. --- indra/llvfs/lldir.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/llvfs/lldir.cpp b/indra/llvfs/lldir.cpp index d209df3dc..57f624895 100644 --- a/indra/llvfs/lldir.cpp +++ b/indra/llvfs/lldir.cpp @@ -921,7 +921,7 @@ void LLDir::setLindenUserDir(const std::string &grid, const std::string &first, // utterly consistent with our firstname/lastname case. std::string userlower(first+"_"+last); LLStringUtil::toLower(userlower); - mLindenUserDir = getGridSpecificDir(grid, add(getOSUserAppDir(), userlower)); + mLindenUserDir = getGridSpecificDir(add(getOSUserAppDir(), userlower), grid); } else { @@ -972,7 +972,7 @@ void LLDir::setChatLogsDir( const std::string& path) void LLDir::updatePerAccountChatLogsDir(const std::string &grid) { - mPerAccountChatLogsDir = getGridSpecificDir(grid, add(getChatLogsDir(), mUserName)); + mPerAccountChatLogsDir = getGridSpecificDir(add(getChatLogsDir(), mUserName), grid); } void LLDir::setPerAccountChatLogsDir(const std::string &grid, const std::string &first, const std::string &last)