diff options
author | Oz Linden <oz@lindenlab.com> | 2017-05-23 04:56:13 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2017-05-23 04:56:13 -0400 |
commit | 069dd355f90116b500065b40bfb36622be1faee5 (patch) | |
tree | fe6cf12e89a715f46cf4e95ad91a5cf7f0e0c8a9 /indra/newview/llviewermessage.cpp | |
parent | f9e049c9e5cc01b464e66cab3e34e33864946c0c (diff) | |
parent | 48af8529a80052e9bc42f81f36896739f8aff861 (diff) |
merge changes for 5.0.5-release
Diffstat (limited to 'indra/newview/llviewermessage.cpp')
-rw-r--r-- | indra/newview/llviewermessage.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index ab76653ba6..507087d1ae 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -6042,7 +6042,14 @@ bool attempt_standard_notification(LLMessageSystem* msgsystem) return LLMarketplaceData::instance().getListing(llsdBlock["listing_id"].asInteger()); } } - + + // Error Notification can come with and without reason + if (notificationID == "JoinGroupError" && llsdBlock.has("reason")) + { + LLNotificationsUtil::add("JoinGroupErrorReason", llsdBlock); + return true; + } + LLNotificationsUtil::add(notificationID, llsdBlock); return true; } |