diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-07-15 13:40:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-15 13:40:54 -0400 |
commit | 35450519dee869e5641cff94ed35acd3bdaa8a42 (patch) | |
tree | 7b751cbd3ccb987885fa2665ca55d6be803747c5 /synapse/handlers | |
parent | Avoid brand new rooms in `delete_old_current_state_events` (#7854) (diff) | |
download | synapse-35450519dee869e5641cff94ed35acd3bdaa8a42.tar.xz |
Ensure that calls to `json.dumps` are compatible with the standard library json. (#7836)
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/ui_auth/checkers.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/handlers/ui_auth/checkers.py b/synapse/handlers/ui_auth/checkers.py index 8b24a73319..a140e9391e 100644 --- a/synapse/handlers/ui_auth/checkers.py +++ b/synapse/handlers/ui_auth/checkers.py @@ -12,6 +12,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + import logging from canonicaljson import json @@ -117,7 +118,7 @@ class RecaptchaAuthChecker(UserInteractiveAuthChecker): except PartialDownloadError as pde: # Twisted is silly data = pde.response - resp_body = json.loads(data) + resp_body = json.loads(data.decode("utf-8")) if "success" in resp_body: # Note that we do NOT check the hostname here: we explicitly |