Skip to content
Snippets Groups Projects
Unverified Commit f6f92845 authored by Erik Johnston's avatar Erik Johnston Committed by GitHub
Browse files

Fix bug in persist events when dealing with non member types. (#7548)

`_is_server_still_joined` will throw if it is given state updates with non-user ID state keys with local user leaves. This is actually rarely a problem since local leaves almost always get persisted by themselves.

(I discovered this on a branch that was otherwise broken, so I haven't seen this in the wild)
parent 5db2a59a
No related branches found
No related tags found
No related merge requests found
Fix bug where a local user leaving a room could fail under rare circumstances.
...@@ -740,8 +740,8 @@ class EventsPersistenceStorage(object): ...@@ -740,8 +740,8 @@ class EventsPersistenceStorage(object):
# whose state has changed as we've already their new state above. # whose state has changed as we've already their new state above.
users_to_ignore = [ users_to_ignore = [
state_key state_key
for _, state_key in itertools.chain(delta.to_insert, delta.to_delete) for typ, state_key in itertools.chain(delta.to_insert, delta.to_delete)
if self.is_mine_id(state_key) if typ == EventTypes.Member and self.is_mine_id(state_key)
] ]
if await self.main_store.is_local_host_in_room_ignoring_users( if await self.main_store.is_local_host_in_room_ignoring_users(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment