diff --git a/indra/newview/llmutelist.cpp b/indra/newview/llmutelist.cpp
index eb0b7e620a721f4fb21b24b74c58ce5fdcaa98c6..af86c801ac8f67b636193d7d7dbb95d0492d86a7 100644
--- a/indra/newview/llmutelist.cpp
+++ b/indra/newview/llmutelist.cpp
@@ -254,7 +254,7 @@ BOOL LLMuteList::add(const LLMute& mute, U32 flags)
 			if (result.second)
 			{
 				llinfos << "Muting " << localmute.mName << " id " << localmute.mID << " flags " << localmute.mFlags << llendl;
-				updateAdd(mute);
+				updateAdd(localmute);
 				notifyObservers();
 				if(!(localmute.mFlags & LLMute::flagParticles))
 				{
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp
index b27d3d87426077e255304f3fd3eeea10c8b9d2be..f907ac698e335a19555cc81c631c8da227fc9b67 100644
--- a/indra/newview/llviewermessage.cpp
+++ b/indra/newview/llviewermessage.cpp
@@ -2151,7 +2151,7 @@ void process_chat_from_simulator(LLMessageSystem *msg, void **user_data)
 	if (gMuteListp)
 	{
 		is_muted = gMuteListp->isMuted(from_id, from_name, LLMute::flagTextChat)
-				   || gMuteListp->isMuted(owner_id);
+				   || gMuteListp->isMuted(owner_id, LLMute::flagTextChat);
 		is_linden = chat.mSourceType != CHAT_SOURCE_OBJECT && gMuteListp->isLinden(from_name);
 	}