diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2009-12-23 13:47:05 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2009-12-23 13:47:05 -0800 |
commit | 7561bbc87068dfee1283eda757f4cca92c4e5b4c (patch) | |
tree | ab29ad4d15421d6ded827f4b56804df2a949eec3 /indra/newview/llnearbychathandler.cpp | |
parent | 6b984521c302067e806e9228cb6abb6c9a58a834 (diff) |
DEV-44631 local chat / chat history emote formatting is wrong
Diffstat (limited to 'indra/newview/llnearbychathandler.cpp')
-rw-r--r-- | indra/newview/llnearbychathandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llnearbychathandler.cpp b/indra/newview/llnearbychathandler.cpp index 169560f688..9e13a626b4 100644 --- a/indra/newview/llnearbychathandler.cpp +++ b/indra/newview/llnearbychathandler.cpp @@ -335,7 +335,7 @@ void LLNearbyChatHandler::processChat(const LLChat& chat_msg) if (tmp_chat.mChatStyle == CHAT_STYLE_IRC) { if(!tmp_chat.mFromName.empty()) - tmp_chat.mText = tmp_chat.mFromName + " " + tmp_chat.mText.substr(3); + tmp_chat.mText = tmp_chat.mFromName + tmp_chat.mText.substr(3); else tmp_chat.mText = tmp_chat.mText.substr(3); } |