summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelplace.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llpanelplace.cpp')
-rw-r--r--indra/newview/llpanelplace.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llpanelplace.cpp b/indra/newview/llpanelplace.cpp
index 815152c69f..7ca3622634 100644
--- a/indra/newview/llpanelplace.cpp
+++ b/indra/newview/llpanelplace.cpp
@@ -466,7 +466,8 @@ bool LLPanelPlace::callbackAuctionWebPage(const LLSD& notification, const LLSD&
if (0 == option)
{
std::string url;
- url = AUCTION_URL + llformat("%010d", response["auction_id"].asInteger());
+ S32 auction_id = notification["payload"]["auction_id"].asInteger();
+ url = AUCTION_URL + llformat("%010d", auction_id );
llinfos << "Loading auction page " << url << llendl;