Add zwsp to #msg messages

This commit is contained in:
Juhani Haverinen 2016-05-30 17:26:08 +03:00
parent 834032aed3
commit ab8b736722
1 changed files with 1 additions and 1 deletions

View File

@ -633,7 +633,7 @@ def parse((line, irc)):
with msgslock:
if (line[1] == 'PRIVMSG' or line[1] == 'JOIN') and nick in msgs:
for sender, origin, msg in msgs.pop(nick):
irc.msg(nick, '%s <%s> %s' % (origin, sender, msg))
irc.msg(nick, zwsp + '%s <%s> %s' % (origin, sender, msg))
msgs_changed = True
if msgs_changed:
savemessages()