Sort user nicknames on /api/server (stats.py)
This commit is contained in:
parent
f0ee00da3a
commit
e5600a6927
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ class Module(ModuleManager.BaseModule):
|
|||
|
||||
def _channel_stats(self, channel):
|
||||
return {
|
||||
"users": [user.nickname for user in channel.users],
|
||||
"users": sorted([user.nickname for user in channel.users]),
|
||||
"topic": channel.topic,
|
||||
"topic-set-at": channel.topic_time,
|
||||
"topic-set-by": channel.topic_setter_nickname
|
||||
|
|
Loading…
Reference in a new issue