Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/blame/commit/24096cb10f6aaf3b377bfb24ef255efcdccf89c4/libs/socketio/tornado.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/socketio/tornado.py

10 lines
295 B

try:
from engineio.async_drivers.tornado import get_tornado_handler as \
get_engineio_handler
except ImportError: # pragma: no cover
get_engineio_handler = None
5 years ago
def get_tornado_handler(socketio_server): # pragma: no cover
return get_engineio_handler(socketio_server.eio)