Skip to content
Snippets Groups Projects
Commit 48111a2a authored by James Cook's avatar James Cook
Browse files

Converted friend request names to SLID-compatible

parent dd9bfb6d
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,7 @@
#include "llimfloater.h"
#include "lltrans.h"
#include "llcallingcard.h"
#include "llslurl.h" // IDEVO
// static
void LLAvatarActions::requestFriendshipDialog(const LLUUID& id, const std::string& name)
......@@ -73,7 +74,7 @@ void LLAvatarActions::requestFriendshipDialog(const LLUUID& id, const std::strin
}
LLSD args;
args["NAME"] = name;
args["NAME"] = LLSLURL::buildCommand("agent", id, "inspect");
LLSD payload;
payload["id"] = id;
payload["name"] = name;
......@@ -102,7 +103,7 @@ void LLAvatarActions::requestFriendshipDialog(const LLUUID& id)
}
std::string full_name;
gCacheName->getFullName(id, full_name);
// IDEVO gCacheName->getFullName(id, full_name);
requestFriendshipDialog(id, full_name);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment