Skip to content

Commit

Permalink
tlobby_main: fixed an unescaped escape character
Browse files Browse the repository at this point in the history
  • Loading branch information
Vultraz committed Mar 23, 2016
1 parent 5ea08ba commit d599ea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/dialogs/lobby/lobby.cpp
Expand Up @@ -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());
}
Expand Down

0 comments on commit d599ea1

Please sign in to comment.