Fix Linux, Thanks Bitten

This commit is contained in:
Lirusaito
2019-03-27 19:52:01 -04:00
parent 7331001bb2
commit 6d1e9ee3d4
2 changed files with 2 additions and 2 deletions

View File

@@ -1270,5 +1270,5 @@ void LLAvatarActions::copyUUIDs(const uuid_vec_t& ids)
std::string LLAvatarActions::getSLURL(const LLUUID& id)
{
return llformat("secondlife:///app/agent/%s/about", id.asString());
return llformat("secondlife:///app/agent/%s/about", id.asString().c_str());
}

View File

@@ -603,6 +603,6 @@ LLFloaterGroupInfo* LLGroupActions::openGroupProfile(const LLUUID& group_id)
std::string LLGroupActions::getSLURL(const LLUUID& id)
{
return llformat("secondlife:///app/group/%s/about", id.asString());
return llformat("secondlife:///app/group/%s/about", id.asString().c_str());
}