diff options
author | Erik Johnston <erik@matrix.org> | 2016-05-31 15:46:24 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-05-31 15:46:24 +0100 |
commit | fd3108fda6dde480bf5cdc98c322613794772fe8 (patch) | |
tree | e0eb4a9fc5c7dcf795e703232e88943795d8515d | |
parent | Merge branch 'erikj/push_rules_cache' of github.com:matrix-org/synapse into e... (diff) | |
parent | Fix typo (diff) | |
download | synapse-fd3108fda6dde480bf5cdc98c322613794772fe8.tar.xz |
Merge branch 'erikj/push_rules_cache' of github.com:matrix-org/synapse into erikj/timings
-rw-r--r-- | synapse/storage/push_rule.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/push_rule.py b/synapse/storage/push_rule.py index 65c20e8900..216a8bf69c 100644 --- a/synapse/storage/push_rule.py +++ b/synapse/storage/push_rule.py @@ -94,7 +94,7 @@ class PushRuleStore(SQLBaseStore): defer.returnValue({}) results = { - user_id: [] + user_id: {} for user_id in user_ids } |