summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authormerov_linden <none@none>2013-03-07 20:43:20 -0800
committermerov_linden <none@none>2013-03-07 20:43:20 -0800
commit792eda047b5dcf35f3c2fad95a543a62eaeb1140 (patch)
treeae3c66c8b781023144e338546400722d9682a305 /indra/newview
parent70ce8023c088997c7f6f9463bf4d2800383e8f05 (diff)
MAINT-2452 : Fixed : Do not clear the cookie in IMPORT_DONE_WITH_ERRORS case so future retry have a chance to work.
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llmarketplacefunctions.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llmarketplacefunctions.cpp b/indra/newview/llmarketplacefunctions.cpp
index d6954dc75b..214558c459 100644
--- a/indra/newview/llmarketplacefunctions.cpp
+++ b/indra/newview/llmarketplacefunctions.cpp
@@ -191,7 +191,9 @@ namespace LLMarketplaceImport
llinfos << " SLM GET timer: " << slmGetTimer.getElapsedTimeF32() << llendl;
}
- if (status >= MarketplaceErrorCodes::IMPORT_BAD_REQUEST)
+ // MAINT-2452 : Do not clear the cookie on IMPORT_DONE_WITH_ERRORS
+ if ((status >= MarketplaceErrorCodes::IMPORT_BAD_REQUEST) &&
+ (status != MarketplaceErrorCodes::IMPORT_DONE_WITH_ERRORS))
{
if (gSavedSettings.getBOOL("InventoryOutboxLogging"))
{