forked from MirrorHub/synapse
Just say yes to OPTIONS requests, since we want to turn on CORS headers for all paths
This commit is contained in:
parent
f99168de06
commit
4add1c70e9
1 changed files with 5 additions and 0 deletions
|
@ -96,6 +96,11 @@ class TwistedHttpServer(HttpServer, resource.Resource):
|
|||
path.
|
||||
"""
|
||||
try:
|
||||
# Just say yes to OPTIONS.
|
||||
if request.method == "OPTIONS":
|
||||
self._send_response(request, 200, {})
|
||||
return
|
||||
|
||||
# Loop through all the registered callbacks to check if the method
|
||||
# and path regex match
|
||||
for path_entry in self.path_regexs.get(request.method, []):
|
||||
|
|
Loading…
Reference in a new issue