diff options
author | Cho <cho@lindenlab.com> | 2013-01-18 02:05:59 +0000 |
---|---|---|
committer | Cho <cho@lindenlab.com> | 2013-01-18 02:05:59 +0000 |
commit | 414b699f8f926c8400e64b9ba052f34b297a391c (patch) | |
tree | 99a236acf8a6ee859c46e6bd416f84891b174110 /indra/newview/llviewermessage.cpp | |
parent | 1780e78884c1b111f4a48bea578e28b370fbe45c (diff) | |
parent | d0235ad1789d05524065307f4514a76d55f4e847 (diff) |
merging latest changes
Diffstat (limited to 'indra/newview/llviewermessage.cpp')
-rwxr-xr-x | indra/newview/llviewermessage.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index 4bff0222bd..d235ba5f96 100755 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -1622,12 +1622,6 @@ bool LLOfferInfo::inventory_offer_callback(const LLSD& notification, const LLSD& { opener = discard_agent_offer; } - - - if (gAgent.isDoNotDisturb() && (!mFromGroup && !mFromObject)) - { - send_do_not_disturb_message(gMessageSystem, mFromID); - } if (modified_form != NULL) { @@ -1995,6 +1989,11 @@ void inventory_offer_handler(LLOfferInfo* info) // In viewer 2 we're now auto receiving inventory offers and messaging as such (not sending reject messages). info->send_auto_receive_response(); + if (gAgent.isDoNotDisturb()) + { + send_do_not_disturb_message(gMessageSystem, info->mFromID); + } + // Inform user that there is a script floater via toast system { payload["give_inventory_notification"] = TRUE; |