diff options
author | Neil Johnson <neil@fragile.org.uk> | 2018-04-10 17:38:16 +0100 |
---|---|---|
committer | Neil Johnson <neil@fragile.org.uk> | 2018-04-10 17:38:16 +0100 |
commit | d54cfbb7a826ccdff8b911b214bb7476a04a65a6 (patch) | |
tree | a5d6ccb5b39c9b582ea6f0f4f8057acac5ecd740 /synapse/storage/__init__.py | |
parent | Merge pull request #3079 from matrix-org/erikj/limit_concurrent_sends (diff) | |
download | synapse-d54cfbb7a826ccdff8b911b214bb7476a04a65a6.tar.xz |
fix typo
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r-- | synapse/storage/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index eacd49d6a5..8cdfd50f90 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -266,9 +266,9 @@ class DataStore(RoomMemberStore, RoomStore, def count_r30_users(self): """ Counts the number of 30 day retained users, defined as:- - * Users who have created their accounts more than 30 days + * Users who have created their accounts more than 30 days ago * Where last seen at most 30 days ago - * Where account creation and last_seen are > 30 days + * Where account creation and last_seen are > 30 days apart Returns counts globaly for a given user as well as breaking by platform |