mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 12:47:38 +03:00
fix: set CORS to * for socketio (#55)
This commit is contained in:
parent
95d199ed9b
commit
574ed747eb
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ class ObjectSerializer(json.JSONEncoder):
|
|||
|
||||
serializer = ObjectSerializer()
|
||||
app = web.Application()
|
||||
sio = socketio.AsyncServer()
|
||||
sio = socketio.AsyncServer(cors_allowed_origins='*')
|
||||
sio.attach(app, socketio_path=config.URL_PREFIX + 'socket.io')
|
||||
routes = web.RouteTableDef()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue