diff options
| author | Ychebotarev ProductEngine <ychebotarev@productengine.com> | 2010-02-09 14:44:26 +0200 | 
|---|---|---|
| committer | Ychebotarev ProductEngine <ychebotarev@productengine.com> | 2010-02-09 14:44:26 +0200 | 
| commit | b16030e204df225e81c88c97bcdb691dbaef77a3 (patch) | |
| tree | 5f474b5f9cd655e9458148a928bddc97496720e7 /indra/newview | |
| parent | a567b5f24b727c8f205aa8f925f772ead57c01f9 (diff) | |
fix for major EXT-5099 Blocked IM text comes from "Second Life" in nearby chat
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llviewermessage.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index 42f7793b5a..d9b5344dd4 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -1842,6 +1842,11 @@ void process_improved_im(LLMessageSystem *msg, void **user_data)  			}  			else  			{ +				/* +				EXT-5099 +				currently there is no way to store in history only... +				using  LLNotificationsUtil::add will add message to Nearby Chat +  				// muted user, so don't start an IM session, just record line in chat  				// history.  Pretend the chat is from a local agent,  				// so it will go into the history but not be shown on screen. @@ -1849,6 +1854,7 @@ void process_improved_im(LLMessageSystem *msg, void **user_data)  				LLSD args;  				args["MESSAGE"] = buffer;  				LLNotificationsUtil::add("SystemMessageTip", args); +				*/  			}  		}  		break; | 
