Don't print xhtml in history messages.
So all the messages are grayed.
This commit is contained in:
parent
ec2ff7a684
commit
59aa2cf87d
|
@ -521,7 +521,9 @@ class GroupchatControl(ChatControlBase):
|
||||||
else:
|
else:
|
||||||
# message from someone
|
# message from someone
|
||||||
if has_timestamp:
|
if has_timestamp:
|
||||||
self.print_old_conversation(msg, nick, tim, xhtml)
|
# don't print xhtml if it's an old message.
|
||||||
|
# Like that xhtml messages are grayed too.
|
||||||
|
self.print_old_conversation(msg, nick, tim, None)
|
||||||
else:
|
else:
|
||||||
self.print_conversation(msg, nick, tim, xhtml)
|
self.print_conversation(msg, nick, tim, xhtml)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue