summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorMark Haines <mjark@negativecurvature.net>2016-02-25 15:13:07 +0000
committerreview.rocks <nobody@review.rocks>2016-02-25 15:13:07 +0000
commit15c2ac2cac7377e48eb0531f911c4b7ea1891457 (patch)
tree3831890dab093bb4eef5106cc5f5432078be37fb /synapse
parentMerge pull request #605 from matrix-org/markjh/dead_code (diff)
downloadsynapse-15c2ac2cac7377e48eb0531f911c4b7ea1891457.tar.xz
Make sure we return a JSON object when returning the values of specif…
…ic keys from a push rule
Diffstat (limited to 'synapse')
-rw-r--r--synapse/rest/client/v1/push_rule.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/rest/client/v1/push_rule.py b/synapse/rest/client/v1/push_rule.py
index 6c8f09e898..d26e4cde3e 100644
--- a/synapse/rest/client/v1/push_rule.py
+++ b/synapse/rest/client/v1/push_rule.py
@@ -324,7 +324,9 @@ def _filter_ruleset_with_path(ruleset, path):
 
     attr = path[0]
     if attr in the_rule:
-        return the_rule[attr]
+        # Make sure we return a JSON object as the attribute may be a
+        # JSON value.
+        return {attr: the_rule[attr]}
     else:
         raise UnrecognizedRequestError()