diff options
-rw-r--r-- | poezio/core/commands.py | 1 | ||||
-rw-r--r-- | poezio/core/core.py | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/poezio/core/commands.py b/poezio/core/commands.py index 3225b61e..bc594494 100644 --- a/poezio/core/commands.py +++ b/poezio/core/commands.py @@ -984,7 +984,6 @@ class CommandCore: jids.add(bare) asyncio.create_task(self.core.impromptu(jids)) - self.core.information('Invited %s to a random room' % (', '.join(jids)), 'Info') @command_args_parser.quoted(1, 1, ['']) def decline(self, args): diff --git a/poezio/core/core.py b/poezio/core/core.py index e327d4f1..ffdd11d1 100644 --- a/poezio/core/core.py +++ b/poezio/core/core.py @@ -1031,6 +1031,7 @@ class Core: for jid in jids: await self.invite(jid, room, force_mediated=True) + self.information('Invited %s to %s' % (', '.join(jids), room.bare), 'Info') # TODO: Use xep_0045's async join_muc_wait somehow instead? self.xmpp.add_event_handler( |