Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
We don't care about forgotten rooms
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Apr 28, 2017
1 parent 421fdf7 commit ad8b316
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions synapse/storage/push_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,18 +185,6 @@ def _bulk_get_push_rules_for_room(self, room_id, state_group, current_state_ids,
if uid in local_users_in_room:
user_ids.add(uid)

forgotten = yield self.who_forgot_in_room(
event.room_id, on_invalidate=cache_context.invalidate,
)

for row in forgotten:
user_id = row["user_id"]
event_id = row["event_id"]

mem_id = current_state_ids.get((EventTypes.Member, user_id), None)
if event_id == mem_id:
user_ids.discard(user_id)

rules_by_user = yield self.bulk_get_push_rules(
user_ids, on_invalidate=cache_context.invalidate,
)
Expand Down

0 comments on commit ad8b316

Please sign in to comment.