diff --git a/plugins/asynchronious.py b/plugins/asynchronious.py index 857ab55..4c0262f 100644 --- a/plugins/asynchronious.py +++ b/plugins/asynchronious.py @@ -190,5 +190,5 @@ class Async: """Retrieve the list of users in a channel.""" result = await self.who(target) if result and 'users' in result: - return {'names': [user['nick'] for user in result['users']]} + return {'names': result['users']} return {'names': []}