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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user