diff options
author | Erik Johnston <erik@matrix.org> | 2014-09-04 18:09:17 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-09-05 17:13:26 +0100 |
commit | 982604fbf2c96c05a98b5787f92c40d600c96c99 (patch) | |
tree | 1ef2e6d115a3285570339c683ecf7cca2d02b7e1 /synapse/rest/profile.py | |
parent | AUth the contents of power level events (diff) | |
download | synapse-982604fbf2c96c05a98b5787f92c40d600c96c99.tar.xz |
Empty string is not a valid JSON object, so don't return them in HTTP responses.
Diffstat (limited to 'synapse/rest/profile.py')
-rw-r--r-- | synapse/rest/profile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/rest/profile.py b/synapse/rest/profile.py index 2e17f87fa1..dad5a208c7 100644 --- a/synapse/rest/profile.py +++ b/synapse/rest/profile.py @@ -51,7 +51,7 @@ class ProfileDisplaynameRestServlet(RestServlet): yield self.handlers.profile_handler.set_displayname( user, auth_user, new_name) - defer.returnValue((200, "")) + defer.returnValue((200, {})) def on_OPTIONS(self, request, user_id): return (200, {}) @@ -86,7 +86,7 @@ class ProfileAvatarURLRestServlet(RestServlet): yield self.handlers.profile_handler.set_avatar_url( user, auth_user, new_name) - defer.returnValue((200, "")) + defer.returnValue((200, {})) def on_OPTIONS(self, request, user_id): return (200, {}) |