Make "Autorespond to people you have muted" an independent toggle for that type of autoresponse.

Trivial fix to carry users along, not needing to autorespond to anyone in order to autorespond to mutes.
I was working on a complete rewrite months ago, I have to dig that up, even still this system needs to be redone, ground up.
This commit is contained in:
Lirusaito
2012-07-31 03:37:10 -04:00
parent 594dc64a43
commit 1c9f996248

View File

@@ -2060,8 +2060,8 @@ void process_improved_im(LLMessageSystem *msg, void **user_data)
LLAvatarTracker::instance().getBuddyInfo(from_id) == NULL )
do_auto_response = true;
if( is_muted && !gSavedPerAccountSettings.getBOOL("AscentInstantMessageResponseMuted") )
do_auto_response = false;
if( is_muted )
do_auto_response = gSavedPerAccountSettings.getBOOL("AscentInstantMessageResponseMuted");
if( offline != IM_ONLINE )
do_auto_response = false;