Ignore tombstones with non-empty state key
This commit is contained in:
parent
ac3f0c34cc
commit
10383d526f
1 changed files with 2 additions and 0 deletions
|
@ -350,6 +350,8 @@ class Client(DBClient):
|
|||
}
|
||||
|
||||
async def _handle_tombstone(self, evt: StateEvent) -> None:
|
||||
if evt.state_key != "":
|
||||
return
|
||||
if not evt.content.replacement_room:
|
||||
self.log.info(f"{evt.room_id} tombstoned with no replacement, ignoring")
|
||||
return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue