From 282ced3fe6d5860975b33902d6eb73010a1a9861 Mon Sep 17 00:00:00 2001 From: Yannik Enss Date: Wed, 27 Feb 2019 02:27:32 +0100 Subject: [PATCH] bugfixing --- xmpp_tg/xmpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmpp_tg/xmpp.py b/xmpp_tg/xmpp.py index 4832fd9..c0efe77 100644 --- a/xmpp_tg/xmpp.py +++ b/xmpp_tg/xmpp.py @@ -323,7 +323,7 @@ class XMPPTelegram(ComponentXMPP): self.gate_reply_message(msg, reply) #msg.reply(reply).send() - def process_chat_group_command(self, iq): + def process_chat_group_command(self, msg): logging.info("received command "+str(msg["body"])+" from "+str(msg["from"])+" for "+str(msg["to"])) is_command = msg["body"].startswith("!") and msg["body"][1] != "_"