summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2019-09-27 16:15:01 +0100
committerBrendan Abolivier <babolivier@matrix.org>2019-09-27 17:03:34 +0100
commit42409b3022fb491a10d0e43810dad427fbfc3473 (patch)
tree13347ec2d88572b65512415409e4781cc47f7d5c
parentUpdate synapse/handlers/deactivate_account.py (diff)
downloadsynapse-42409b3022fb491a10d0e43810dad427fbfc3473.tar.xz
Incorporate review
-rw-r--r--synapse/handlers/deactivate_account.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/synapse/handlers/deactivate_account.py b/synapse/handlers/deactivate_account.py

index 2ae6808a34..cd6f19ec4c 100644 --- a/synapse/handlers/deactivate_account.py +++ b/synapse/handlers/deactivate_account.py
@@ -121,8 +121,8 @@ class DeactivateAccountHandler(BaseHandler): # parts users from rooms (if it isn't already running) self._start_user_parting() - # Reject all pending invites for the user, so that they do not show up in the - # invitees list of rooms. + # Reject all pending invites for the user, so that the user doesn't show up in the + # "invited" section of rooms' members list. yield self._reject_pending_invites_for_user(user_id) # Remove all information on the user from the account_validity table. @@ -144,8 +144,6 @@ class DeactivateAccountHandler(BaseHandler): user = UserID.from_string(user_id) pending_invites = yield self.store.get_invited_rooms_for_user(user_id) - logger.info(pending_invites) - for room in pending_invites: try: yield self._room_member_handler.update_membership(