diff options
author | Leslie Linden <leslie@lindenlab.com> | 2011-12-06 11:19:58 -0800 |
---|---|---|
committer | Leslie Linden <leslie@lindenlab.com> | 2011-12-06 11:19:58 -0800 |
commit | a255fadfab359931d591c6a874abbea5fcf13526 (patch) | |
tree | 495f73b982ff51c37e34f9b253d5dd11f399f133 /indra/newview/llmarketplacefunctions.cpp | |
parent | 3236cbd585860f76a14c4837c70cb5823a4fd7d5 (diff) |
Updated to trigger a 'get' to establish marketplace session cookie when outbox panel created.
Diffstat (limited to 'indra/newview/llmarketplacefunctions.cpp')
-rw-r--r-- | indra/newview/llmarketplacefunctions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llmarketplacefunctions.cpp b/indra/newview/llmarketplacefunctions.cpp index 1c189f6ee2..2f8c5bc9ee 100644 --- a/indra/newview/llmarketplacefunctions.cpp +++ b/indra/newview/llmarketplacefunctions.cpp @@ -52,7 +52,7 @@ std::string getMarketplaceBaseURL() url += "api/1/"; url += gAgent.getID().getString(); - url += "/inventory"; + url += "/inventory/"; return url; } @@ -61,7 +61,7 @@ std::string getMarketplaceURL_InventoryImport() { std::string url = getMarketplaceBaseURL(); - url += "/import"; + url += "import/"; return url; } |