diff options
author | Sean Quah <8349537+squahtx@users.noreply.github.com> | 2022-09-14 10:42:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-14 10:42:57 +0100 |
commit | c73774467edb04c372caecb9e843542654f7610b (patch) | |
tree | b11058c6d1e62398929cbd970508e24b665d115e /changelog.d | |
parent | Fix a long-standing spec compliance bug where Synapse would accept a trailing... (diff) | |
download | synapse-c73774467edb04c372caecb9e843542654f7610b.tar.xz |
Fix bug in device list caching when remote users leave rooms (#13749)
When a remote user leaves the last room shared with the homeserver, we have to mark their device list as unsubscribed, otherwise we would hold on to a stale device list in our cache. Crucially, the device list would remain cached even after the remote user rejoined the room, which could lead to E2EE failures until the next change to the remote user's device list. Fixes #13651. Signed-off-by: Sean Quah <seanq@matrix.org>
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/13749.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/13749.bugfix b/changelog.d/13749.bugfix new file mode 100644 index 0000000000..8ffafec07b --- /dev/null +++ b/changelog.d/13749.bugfix @@ -0,0 +1 @@ +Fix a long standing bug where device lists would remain cached when remote users left and rejoined the last room shared with the local homeserver. |