Fix PONG response: Messages params are not decoded

This commit is contained in:
nemunaire 2014-09-05 01:48:01 +02:00
parent 85ec2dcd01
commit 028b7fd88d

View File

@ -124,7 +124,7 @@ class MessageConsumer:
self.srv._on_connect()
elif msg.cmd == "PING":
self.srv.write("%s :%s" % ("PONG", msg.params[0]))
self.srv.write("%s :%s" % ("PONG", msg.decode(msg.params[0])))
else:
for h in hm.get_hooks("in", msg.cmd, msg.qual):