diff options
| -rw-r--r-- | indra/newview/llchatitemscontainerctrl.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llviewermessage.cpp | 4 | 
2 files changed, 5 insertions, 1 deletions
| diff --git a/indra/newview/llchatitemscontainerctrl.cpp b/indra/newview/llchatitemscontainerctrl.cpp index 81edb55f93..aef36b677c 100644 --- a/indra/newview/llchatitemscontainerctrl.cpp +++ b/indra/newview/llchatitemscontainerctrl.cpp @@ -324,6 +324,8 @@ void LLNearbyChatToastPanel::draw()  			icon->setDrawTooltip(mSourceType == CHAT_SOURCE_AGENT);  			if(mSourceType == CHAT_SOURCE_AGENT)  				icon->setValue(mFromID); +			else if(mSourceType == CHAT_SOURCE_SYSTEM) +				icon->setValue(LLSD("SL_Logo"));  			else  				icon->setValue(LLSD("OBJECT_Icon"));  		} diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index ef3ee32f11..d8a3932a22 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -2392,10 +2392,13 @@ void process_improved_im(LLMessageSystem *msg, void **user_data)  				chat.mFromID = from_id ^ gAgent.getSessionID();  			} +			chat.mSourceType = CHAT_SOURCE_OBJECT; +  			if(SYSTEM_FROM == name)  			{  				// System's UUID is NULL (fixes EXT-4766)  				chat.mFromID = LLUUID::null; +				chat.mSourceType = CHAT_SOURCE_SYSTEM;  			}  			LLSD query_string; @@ -2412,7 +2415,6 @@ void process_improved_im(LLMessageSystem *msg, void **user_data)  			chat.mURL = link.str();  			chat.mText = message; -			chat.mSourceType = CHAT_SOURCE_OBJECT;  			// Note: lie to Nearby Chat, pretending that this is NOT an IM, because  			// IMs from obejcts don't open IM sessions. | 
