mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-02 20:59:12 +01:00
Only forget room if you were in the room
This commit is contained in:
parent
08a8514b7a
commit
73b6bf4629
1 changed files with 2 additions and 1 deletions
|
@ -946,7 +946,8 @@ class RoomMemberHandler(BaseHandler):
|
||||||
user_id, room_id
|
user_id, room_id
|
||||||
))
|
))
|
||||||
|
|
||||||
yield self.store.forget(user_id, room_id)
|
if membership:
|
||||||
|
yield self.store.forget(user_id, room_id)
|
||||||
|
|
||||||
|
|
||||||
class RoomListHandler(BaseHandler):
|
class RoomListHandler(BaseHandler):
|
||||||
|
|
Loading…
Reference in a new issue