Fix /destroy error cases
This commit is contained in:
parent
f808f0cff9
commit
233d6d2252
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue