diff options
author | Sean Quah <seanq@element.io> | 2021-10-20 13:43:02 +0100 |
---|---|---|
committer | Sean Quah <seanq@element.io> | 2021-10-20 13:43:02 +0100 |
commit | ee2cee5f529402e060e0a1567b438d2b6026cddb (patch) | |
tree | f672584864e2aa1cf22b02231b2a092accfddf91 /synapse/handlers | |
parent | Remove false warning about copying the log config to a homeserver.yaml (#11092) (diff) | |
parent | Remove link to #10947 from changelog (diff) | |
download | synapse-ee2cee5f529402e060e0a1567b438d2b6026cddb.tar.xz |
Merge branch 'master' into develop
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/deactivate_account.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/synapse/handlers/deactivate_account.py b/synapse/handlers/deactivate_account.py index e88c3c27ce..bee62cf360 100644 --- a/synapse/handlers/deactivate_account.py +++ b/synapse/handlers/deactivate_account.py @@ -131,10 +131,6 @@ class DeactivateAccountHandler: # delete from user directory await self.user_directory_handler.handle_local_user_deactivated(user_id) - # If the user is present in the monthly active users table - # remove them - await self.store.remove_deactivated_user_from_mau_table(user_id) - # Mark the user as erased, if they asked for that if erase_data: user = UserID.from_string(user_id) |