summary refs log tree commit diff
path: root/changelog.d/12905.bugfix (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 1.61.0rc1Olivier Wilkinson (reivilibre)2022-06-071-1/+0
|
* Fix 404 on `/sync` when the last event is a redaction of an unknown/purged ↵Richard van der Hoff2022-06-011-0/+1
event (#12905) Currently, we try to pull the event corresponding to a sync token from the database. However, when we fetch redaction events, we check the target of that redaction (because we aren't allowed to send redactions to clients without validating them). So, if the sync token points to a redaction of an event that we don't have, we have a problem. It turns out we don't really need that event, and can just work with its ID and metadata, which sidesteps the whole problem.