diff options
author | Merov Linden <merov@lindenlab.com> | 2013-02-15 12:09:23 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2013-02-15 12:09:23 -0800 |
commit | df54caf6f93b164eef1a0a64cc173be67d762041 (patch) | |
tree | 7245af80c8690c99a3a5dbc7e9abe67599dfb814 | |
parent | bb841e7d21a4baf25e5dd240bc4776c853710ac9 (diff) |
MAINT-2301 : Do not treat 404 errors (server returns not found) as 403 errors (forbidden, i.e. resident is not a merchant)
-rw-r--r-- | indra/newview/llmarketplacefunctions.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/newview/llmarketplacefunctions.cpp b/indra/newview/llmarketplacefunctions.cpp index 2eeaebf823..d6954dc75b 100644 --- a/indra/newview/llmarketplacefunctions.cpp +++ b/indra/newview/llmarketplacefunctions.cpp @@ -479,8 +479,7 @@ void LLMarketplaceInventoryImporter::updateImport() { U32 status = LLMarketplaceImport::getResultStatus(); if ((status == MarketplaceErrorCodes::IMPORT_FORBIDDEN) || - (status == MarketplaceErrorCodes::IMPORT_AUTHENTICATION_ERROR) || - (status == MarketplaceErrorCodes::IMPORT_NOT_FOUND)) + (status == MarketplaceErrorCodes::IMPORT_AUTHENTICATION_ERROR)) { mMarketPlaceStatus = MarketplaceStatusCodes::MARKET_PLACE_NOT_MERCHANT; } |