diff --git a/Applications/IRCClient/IRCLogBuffer.cpp b/Applications/IRCClient/IRCLogBuffer.cpp index da5ad1fef0..8904cca8df 100644 --- a/Applications/IRCClient/IRCLogBuffer.cpp +++ b/Applications/IRCClient/IRCLogBuffer.cpp @@ -86,11 +86,8 @@ void IRCLogBuffer::add_message(char prefix, const String& name, const String& te void IRCLogBuffer::add_message(const String& text, Color color) { auto html = String::format( - "
" "%s" - "%s" - "
", - color.to_string().characters(), + "%s", timestamp_string().characters(), escape_html_entities(text).characters()); auto wrapper = Web::create_element(*m_document, Web::HTML::TagNames::div);