Skip to content
Snippets Groups Projects
Commit 7b801ca1 authored by Tofu Linden's avatar Tofu Linden
Browse files

EXT-6589 "Are you sure you want to teleport.." dialog has broken "[LOCATION]" tag

parent 088a878f
No related branches found
No related tags found
No related merge requests found
......@@ -551,7 +551,9 @@ void LLPanelPlaces::onTeleportButtonClicked()
{
LLSD payload;
payload["asset_id"] = mItem->getAssetUUID();
LLNotificationsUtil::add("TeleportFromLandmark", LLSD(), payload);
LLSD args;
args["LOCATION"] = mItem->getName();
LLNotificationsUtil::add("TeleportFromLandmark", args, payload);
}
else if (mPlaceInfoType == AGENT_INFO_TYPE ||
mPlaceInfoType == REMOTE_PLACE_INFO_TYPE ||
......
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