From 233d6d2252c01d5d6bdea0b02bc44a279ef765f7 Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 28 Jan 2021 19:01:04 +0100 Subject: [PATCH] Fix /destroy error cases --- poezio/core/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/poezio/core/commands.py b/poezio/core/commands.py index 03ca0a61..45704978 100644 --- a/poezio/core/commands.py +++ b/poezio/core/commands.py @@ -1168,9 +1168,9 @@ class CommandCore: try: await self.core.xmpp['xep_0045'].destroy(room, reason, altroom) except (IqError, IqTimeout) as e: - xmpp.core.information('Unable to destroy room %s: %s' % (room, e), 'Info') + self.core.information('Unable to destroy room %s: %s' % (room, e), 'Info') else: - xmpp.core.information('Room %s destroyed' % room, 'Info') + self.core.information('Room %s destroyed' % room, 'Info') if not args[0] and isinstance(self.core.tabs.current_tab, tabs.MucTab): room = self.core.tabs.current_tab.general_jid