diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-10-21 09:11:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-21 09:11:19 -0400 |
commit | 4dd7aa371b6bc746fa4b0a9af220b2013b17a45d (patch) | |
tree | 4f7833c20b72a55945b982be2191beb8e3e47ac7 /changelog.d/14248.bugfix | |
parent | Update changelog entry for #10015. (diff) | |
download | synapse-4dd7aa371b6bc746fa4b0a9af220b2013b17a45d.tar.xz |
Properly update the threads table when thread events are redacted. (#14248)
When the last event in a thread is redacted we need to update the threads table: * Find the new latest event in the thread and store it into the table; or * Remove the thread from the table if it is no longer a thread (i.e. all events in the thread were redacted).
Diffstat (limited to 'changelog.d/14248.bugfix')
-rw-r--r-- | changelog.d/14248.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/14248.bugfix b/changelog.d/14248.bugfix new file mode 100644 index 0000000000..203c52c16b --- /dev/null +++ b/changelog.d/14248.bugfix @@ -0,0 +1 @@ +Fix a bug introduced in Synapse 1.70.0rc1 where the information returned from the `/threads` API could be stale when threaded events are redacted. |