summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreyL ProductEngine <alihatskiy@productengine.com>2016-01-11 03:35:24 +0200
committerAndreyL ProductEngine <alihatskiy@productengine.com>2016-01-11 03:35:24 +0200
commite5887ad1d9385ba980b58e4c0ad78337fec451ab (patch)
treecbea8024d2114ef7586a1b7e495f7d4500fb6141
parent29cb3a4a93543c41b23ba429c4d04189c24d30fc (diff)
MAINT-6018 Open URL dialog spam
Remove notifications of muted agents
-rwxr-xr-xindra/newview/llmutelist.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llmutelist.cpp b/indra/newview/llmutelist.cpp
index d79baf90e7..3f4f2446e8 100755
--- a/indra/newview/llmutelist.cpp
+++ b/indra/newview/llmutelist.cpp
@@ -315,6 +315,11 @@ BOOL LLMuteList::add(const LLMute& mute, U32 flags)
{
LLPipeline::removeMutedAVsLights(avatarp);
}
+ //remove agent's notifications as well
+ if (localmute.mType == LLMute::AGENT)
+ {
+ LLNotifications::instance().cancelByOwner(localmute.mID);
+ }
return TRUE;
}
}