mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-16 06:51:46 +01:00
Allow Date header through CORS (#8804)
This commit is contained in:
parent
89f7930730
commit
3f0cba657c
2 changed files with 2 additions and 1 deletions
1
changelog.d/8804.feature
Normal file
1
changelog.d/8804.feature
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Allow Date header through CORS. Contributed by Nicolas Chamo.
|
|
@ -674,7 +674,7 @@ def set_cors_headers(request: Request):
|
||||||
)
|
)
|
||||||
request.setHeader(
|
request.setHeader(
|
||||||
b"Access-Control-Allow-Headers",
|
b"Access-Control-Allow-Headers",
|
||||||
b"Origin, X-Requested-With, Content-Type, Accept, Authorization",
|
b"Origin, X-Requested-With, Content-Type, Accept, Authorization, Date",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue