diff options
author | Erik Johnston <erik@matrix.org> | 2016-09-02 14:53:38 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-09-02 14:53:46 +0100 |
commit | c0238ecbed8a075fac65944294e294f3453eaf9c (patch) | |
tree | 907c3385fc72a0725ed0ace59c886a4f011e2750 /synapse/notifier.py | |
parent | Merge pull request #1064 from matrix-org/erikj/on_receive_check (diff) | |
download | synapse-c0238ecbed8a075fac65944294e294f3453eaf9c.tar.xz |
Explicitly specify state_key for history_visibility fetching
Diffstat (limited to 'synapse/notifier.py')
-rw-r--r-- | synapse/notifier.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/notifier.py b/synapse/notifier.py index b86648f5e4..48653ae843 100644 --- a/synapse/notifier.py +++ b/synapse/notifier.py @@ -423,7 +423,8 @@ class Notifier(object): def _is_world_readable(self, room_id): state = yield self.state_handler.get_current_state( room_id, - EventTypes.RoomHistoryVisibility + EventTypes.RoomHistoryVisibility, + "", ) if state and "history_visibility" in state.content: defer.returnValue(state.content["history_visibility"] == "world_readable") |