summary refs log tree commit diff
path: root/synapse/push/bulk_push_rule_evaluator.py
diff options
context:
space:
mode:
authorRichard van der Hoff <github@rvanderhoff.org.uk>2016-02-22 16:36:06 +0000
committerRichard van der Hoff <github@rvanderhoff.org.uk>2016-02-22 16:36:06 +0000
commitf7e3de02efb4fd4d2b87c8a9f56fc558d077a68a (patch)
tree19435691eb59deb73719cc04d54952291a8fd518 /synapse/push/bulk_push_rule_evaluator.py
parentMerge pull request #594 from matrix-org/markjh/coverage (diff)
parentaddress review comments (diff)
downloadsynapse-f7e3de02efb4fd4d2b87c8a9f56fc558d077a68a.tar.xz
Merge pull request #587 from matrix-org/rav/guest_access_after_room_join
Allow guest users access to messages in rooms they have joined
Diffstat (limited to 'synapse/push/bulk_push_rule_evaluator.py')
-rw-r--r--synapse/push/bulk_push_rule_evaluator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/bulk_push_rule_evaluator.py b/synapse/push/bulk_push_rule_evaluator.py

index 0a23b3f102..5d8be483e5 100644 --- a/synapse/push/bulk_push_rule_evaluator.py +++ b/synapse/push/bulk_push_rule_evaluator.py
@@ -103,7 +103,7 @@ class BulkPushRuleEvaluator: users_dict = yield self.store.are_guests(self.rules_by_user.keys()) - filtered_by_user = yield handler._filter_events_for_clients( + filtered_by_user = yield handler.filter_events_for_clients( users_dict.items(), [event], {event.event_id: current_state} )