tlobby_main: fixed an unescaped escape character

This commit is contained in:
Charles Dang 2016-03-24 08:24:04 +11:00
parent 5ea08ba37d
commit d599ea1509

View file

@ -204,7 +204,7 @@ void tlobby_main::add_chat_message(const time_t& /*time*/,
events::chat_handler::MESSAGE_TYPE /*type*/)
{
std::stringstream ss;
ss << "<b>&lt;" << speaker << "&gt</b> ";
ss << "<b>&lt;" << speaker << "&gt;</b> ";
ss << font::escape_text(message);
append_to_chatbox(ss.str());
}