diff options
| -rw-r--r-- | indra/newview/llmarketplacefunctions.cpp | 4 | 
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"))  				{  | 
