mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-07-22 10:40:34 -04:00
Merge branch 'master' into develop
This commit is contained in:
commit
4d978d7db4
15 changed files with 134 additions and 98 deletions
|
@ -28,7 +28,7 @@ from synapse.api.errors import NotFoundError, StoreError, SynapseError
|
|||
from synapse.config import ConfigError
|
||||
from synapse.http.server import (
|
||||
DirectServeResource,
|
||||
finish_request,
|
||||
respond_with_html,
|
||||
wrap_html_request_handler,
|
||||
)
|
||||
from synapse.http.servlet import parse_string
|
||||
|
@ -196,12 +196,8 @@ class ConsentResource(DirectServeResource):
|
|||
template_html = self._jinja_env.get_template(
|
||||
path.join(TEMPLATE_LANGUAGE, template_name)
|
||||
)
|
||||
html_bytes = template_html.render(**template_args).encode("utf8")
|
||||
|
||||
request.setHeader(b"Content-Type", b"text/html; charset=utf-8")
|
||||
request.setHeader(b"Content-Length", b"%i" % len(html_bytes))
|
||||
request.write(html_bytes)
|
||||
finish_request(request)
|
||||
html = template_html.render(**template_args)
|
||||
respond_with_html(request, 200, html)
|
||||
|
||||
def _check_hash(self, userid, userhmac):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue