Bug: sync rooms.joined.state
overlaps with rooms.joined.timeline
#361
Labels
No labels
Bug
Cherry-picking
Database
Dependencies
Dependencies/Renovate
Difficulty
Easy
Difficulty
Hard
Difficulty
Medium
Documentation
Enhancement
Good first issue
Help wanted
Inherited
Matrix/Administration
Matrix/Appservices
Matrix/Auth
Matrix/Client
Matrix/Core
Matrix/Federation
Matrix/Hydra
Matrix/MSC
Matrix/Media
Meta
Meta/CI
Meta/Packaging
Priority
Blocking
Priority
High
Priority
Low
Security
Status/Blocked
Status
Confirmed
Status
Duplicate
Status
Invalid
Status
Needs Investigation
To-Merge
Wont fix
old/ci/cd
old/rust
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
continuwuation/continuwuity#361
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The spec for the sync endpoint says that the
rooms.joined.state
field should beInstead of updates between
since
and the start of the timeline, we're returning updates betweensince
and the end of the timeline.Steps to reproduce
/v3/sync
without asince
parameterrooms.joined.$your_room.timeline
and compare it to the set of state events included inrooms.joined.$your_room.state
. Some events that are present intimeline
are also present instate
.Notes
The spec includes this block with an explanation of the reasoning behind this design:
This causes issues for
sliding-sync-proxy
. See here.