diff options
author | Merov Linden <merov@lindenlab.com> | 2014-11-08 15:09:48 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2014-11-08 15:09:48 -0800 |
commit | 69baff7415bf97819134bcf4da948880ac714f91 (patch) | |
tree | 5062d72e6388aa92dcb24bc6fc78761b940d8a92 /indra/newview/llinventorybridge.cpp | |
parent | 48fd1e2ec0a53fb9c572e4542a0f0c7b25bc3c2c (diff) |
DD-259 : Show only one error when failing on listing, user can see all errors in Check for Errors
Diffstat (limited to 'indra/newview/llinventorybridge.cpp')
-rwxr-xr-x | indra/newview/llinventorybridge.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index fa49f23364..ec29ec5896 100755 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -3159,7 +3159,10 @@ void LLFolderBridge::gatherMessage(std::string& message, LLError::ELevel log_lev { if (!mMessage.empty()) { - mMessage += "\n"; + // Currently, we do not gather all messages as it creates very long alerts + // Users can get to the whole list of errors on a listing using the "Check for Errors" audit button + //mMessage += "\n"; + return; } // Take the leading spaces out... std::string::size_type start = message.find_first_not_of(" "); |