summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorSean Quah <seanq@element.io>2021-10-20 11:06:51 +0100
committerSean Quah <seanq@element.io>2021-10-20 11:06:51 +0100
commitc59b9711f316583e81d8c1f40eb49000d9e0e690 (patch)
tree014a40e0334dc4dde84accc8ac1b23db5194202f /synapse/handlers
parentMerge branch 'release-v1.45' of github.com:matrix-org/synapse into matrix-org... (diff)
parentRevert change to counting of deactivated users towards the monthly active use... (diff)
downloadsynapse-c59b9711f316583e81d8c1f40eb49000d9e0e690.tar.xz
Merge branch 'release-v1.45' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/deactivate_account.py4
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)