matrix-org / synapse

Synapse: Matrix homeserver written in Python/Twisted.
https://matrix-org.github.io/synapse
Apache License 2.0
11.79k stars 2.13k forks source link

State events included in timeline section of sync when history visibility is set to join #9923

Open robintown opened 3 years ago

robintown commented 3 years ago

Description

When a user joins a room with history visibility set to join or invite, they may find recent state events pertaining to the current state of the room included in the timeline that, according to the history visibility spec, should be hidden.

I see that this behavior was introduced in #2451 as a workaround for matrix-org/matrix-ios-sdk#341 (and is in fact being tested for), however it is contrary to the spec as far as I can tell.

It is also of practical concern. For example, a user joining a recently created room with limited history visibility will see all of the state events from the room's creation, leading them to falsely believe that there must have been no messages sent between the room's creation and when they joined. For this purpose, it would also be nice if the m.room.create event would be hidden as well (as e.g. Dendrite does), however I'm not entirely sure that that's the correct thing to do (since history visibility is shared for the split second of the room's creation).

Optimally, there would be a way to solve matrix-org/matrix-ios-sdk#341 while also applying history visibility rules correctly.

Steps to reproduce

Some state events (name, topic, etc.) that come after the history visibility state event but before the second user was invited/joined will nevertheless be visible to them in the timeline.

Version information

erikjohnston commented 3 years ago

I think the concrete suggestion here is that we shouldn't put state events in the timeline section of the sync?

MadLittleMods commented 1 year ago

Related to MSC3871: Gappy timelines