aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/stats.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/stats.py b/modules/stats.py
index e6464601..3b64db76 100644
--- a/modules/stats.py
+++ b/modules/stats.py
@@ -60,7 +60,9 @@ class Module(ModuleManager.BaseModule):
"bytes-written": server.bytes_written,
"bytes-read": server.bytes_read,
"channels": {
- c.name: self._channel_stats(c) for c in server.channels}
+ c.name: self._channel_stats(c) for c in server.channels
+ },
+ "capabilities": list(server.capabilities)
}
@utils.hook("api.get.servers")