Skip to content
Snippets Groups Projects
Commit 075eeef1 authored by nkour's avatar nkour
Browse files

make sure before_/after_time/name possible newlines are taken into account in history window too

parent ac225d49
No related branches found
No related tags found
No related merge requests found
......@@ -280,7 +280,9 @@ class HistoryWindow:
if contact_name and kind != constants.KIND_GCSTATUS:
# add stuff before and after contact name
before_str = gajim.config.get('before_nickname')
before_str = helpers.from_one_line(before_str)
after_str = gajim.config.get('after_nickname')
after_str = helpers.from_one_line(after_str)
format = before_str + contact_name + after_str + ' '
buf.insert_with_tags_by_name(end_iter, format, tag_name)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment