Hopefully fix the logs thing?

This commit is contained in:
Lirusaito
2016-05-02 19:32:15 -04:00
parent e50899dc68
commit f0a6ffcabf

View File

@@ -902,12 +902,12 @@ std::string LLDir::getForbiddenFileChars()
// static // static
std::string LLDir::getGridSpecificDir( const std::string& in, const std::string& grid ) std::string LLDir::getGridSpecificDir( const std::string& in, const std::string& grid )
{ {
std::string ret; std::string ret = in;
if (!grid.empty()) if (!grid.empty())
{ {
std::string gridlower(grid); std::string gridlower(grid);
LLStringUtil::toLower(gridlower); LLStringUtil::toLower(gridlower);
ret = in + "@" + gridlower; ret += '@' + gridlower;
} }
return ret; return ret;
} }