From 8bb357a35edb6937d674a47bd24952e229249a0a Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Mon, 3 Jun 2024 23:24:23 -0500 Subject: [PATCH] Note the extras --- synapse/handlers/sliding_sync.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/synapse/handlers/sliding_sync.py b/synapse/handlers/sliding_sync.py index 7675702216..d828ac6619 100644 --- a/synapse/handlers/sliding_sync.py +++ b/synapse/handlers/sliding_sync.py @@ -43,7 +43,8 @@ logger = logging.getLogger(__name__) # Everything except `Membership.LEAVE` because we want everything that's *still* -# relevant to the user. +# relevant to the user. There are few more things to include in the sync response +# (kicks, newly_left) but those are handled separately. MEMBERSHIP_TO_DISPLAY_IN_SYNC = ( Membership.INVITE, Membership.JOIN,