Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/src/commit/20d235e1b511d5c31e4fdeaf381f749130e1dc7b/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
def get_tornado_handler(socketio_server): # pragma: no cover
return get_engineio_handler(socketio_server.eio)