Skip to content
Snippets Groups Projects
Commit 5ddd1998 authored by Erik Johnston's avatar Erik Johnston
Browse files

Typo

parent 4b461a69
No related branches found
No related tags found
No related merge requests found
...@@ -415,7 +415,9 @@ def run(hs): ...@@ -415,7 +415,9 @@ def run(hs):
stats["timestamp"] = now stats["timestamp"] = now
stats["uptime_seconds"] = uptime stats["uptime_seconds"] = uptime
stats["total_users"] = yield hs.get_datastore().count_all_users() stats["total_users"] = yield hs.get_datastore().count_all_users()
stats["total_users"] = yield hs.get_datastore().count_nonbridged_users()
total_nonbridged_users = yield hs.get_datastore().count_nonbridged_users()
stats["total_nonbridged_users"] = total_nonbridged_users
room_count = yield hs.get_datastore().get_room_count() room_count = yield hs.get_datastore().get_room_count()
stats["total_room_count"] = room_count stats["total_room_count"] = room_count
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment