diff options
| author | Gilbert Gonzales <gilbert@lindenlab.com> | 2013-01-17 16:06:08 -0800 | 
|---|---|---|
| committer | Gilbert Gonzales <gilbert@lindenlab.com> | 2013-01-17 16:06:08 -0800 | 
| commit | d0235ad1789d05524065307f4514a76d55f4e847 (patch) | |
| tree | 2db86b4a41c0164b81663d116f0a0aca02ec3d3b | |
| parent | 6c79873d8dcb08c891ecd04f5706e69fe3a75b7d (diff) | |
CHUI-604: Problem: DND response was inside of the responder for the inventory offer. Resolution: DND response is now sent upon receiving an offer notification from an agent.
| -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 db81e057de..9878f9bc81 100755 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -1618,12 +1618,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)  			{ @@ -1991,6 +1985,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; | 
