Ensure new filter is actually created
This commit is contained in:
parent
c9bfb058d8
commit
c433f61091
|
@ -454,7 +454,7 @@ class Filter(object):
|
|||
filter: A new filter including the given rooms and the old
|
||||
filter's rooms.
|
||||
"""
|
||||
newFilter = self
|
||||
newFilter = Filter(self.filter_json)
|
||||
newFilter.rooms += room_ids
|
||||
return newFilter
|
||||
|
||||
|
|
|
@ -448,7 +448,6 @@ class StateGroupWorkerStore(EventsWorkerStore, SQLBaseStore):
|
|||
Returns:
|
||||
Deferred[str]: predecessor room id
|
||||
"""
|
||||
|
||||
state_ids = yield self.get_current_state_ids(room_id)
|
||||
create_id = state_ids.get((EventTypes.Create, ""))
|
||||
|
||||
|
|
Loading…
Reference in New Issue