Fixed command version (Thank you roughnecks).

This commit is contained in:
Schimon Jehudah, Adv. 2024-06-13 20:40:30 +03:00
parent f1d906c839
commit d0b49b5717
2 changed files with 3 additions and 3 deletions

View file

@ -1,2 +1,2 @@
__version__ = '0.1.78'
__version_info__ = (0, 1, 78)
__version__ = '0.1.79'
__version_info__ = (0, 1, 79)

View file

@ -573,7 +573,7 @@ class XmppChat:
response = XmppCommands.print_support_jid()
await XmppCommands.invite_jid_to_muc(self, jid_bare)
case 'version':
response = XmppCommands.print_version(self, jid_bare)
response = XmppCommands.print_version()
case _ if command_lowercase.startswith('xmpp:'):
response = await XmppCommands.muc_join(self, command)
case _: