Ctcp: Don't strip CTCP character in output. (bug added in previous commit)

This commit is contained in:
Valentin Lorentz 2016-04-24 21:26:25 +02:00
parent 6ec0af2da3
commit c9e5486806
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class Ctcp(callbacks.PluginRegexp):
def _reply(self, irc, msg, s):
s = '\x01%s\x01' % s
irc.reply(s, notice=True, private=True, to=msg.nick)
irc.reply(s, notice=True, private=True, to=msg.nick, stripCtcp=False)
def ctcpPing(self, irc, msg, match):
"^\x01PING(?: (.+))?\x01$"