diff options
author | Merov Linden <merov@lindenlab.com> | 2015-05-02 14:46:30 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2015-05-02 14:46:30 -0700 |
commit | e1aaebd59d7a825440cd51c7f902f0c9f30c3e88 (patch) | |
tree | 43991b8aa19a03907d2d37adcfea6de2de5c760e /indra | |
parent | 7da083e3e64dcd4e851e7ac6539e26e60cf82203 (diff) |
DD-396 : Add decription check on the common 422 error on marketplace listing
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/llmarketplacefunctions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llmarketplacefunctions.cpp b/indra/newview/llmarketplacefunctions.cpp index 5f5abd89e2..e15014e6b9 100755 --- a/indra/newview/llmarketplacefunctions.cpp +++ b/indra/newview/llmarketplacefunctions.cpp @@ -124,7 +124,7 @@ LLUUID getVersionFolderIfUnique(const LLUUID& folder_id) void log_SLM_warning(const std::string& request, U32 status, const std::string& reason, const std::string& code, const std::string& description) { LL_WARNS("SLM") << "SLM API : Responder to " << request << ". status : " << status << ", reason : " << reason << ", code : " << code << ", description : " << description << LL_ENDL; - if (status == 422) + if ((status == 422) && (description == "[\"You must have an English description to list the product\", \"You must choose a category for your product before it can be listed\", \"Listing could not change state.\", \"Price can't be blank\"]")) { // Unprocessable Entity : Special case that error as it is a frequent answer when trying to list an incomplete listing LLNotificationsUtil::add("MerchantUnprocessableEntity"); |