Do not prepend nick to quotes

This commit is contained in:
Xavier Del Campo 2021-10-02 11:32:04 +02:00 committed by Xavier Del Campo Romero
parent 9db3d08b51
commit f2930849c0
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ public class ConversationView : Gtk.Overlay {
text_to_quote = quotes.replace(text_to_quote, -1, 0, "");
text_to_quote = whitespace.replace(text_to_quote, -1, 0, "\n");
text_to_quote = "%s: %s".printf(nick, text_to_quote);
text_to_quote = "%s".printf(text_to_quote);
text_to_quote = first_column.replace(text_to_quote, -1, 0, "\\1> \\2");