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/f50bcf34ac3c246d21a69dc3cc2f2eba63314c21/libs/engineio/__init__.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/engineio/__init__.py

14 lines
481 B

5 years ago
from .client import Client
from .middleware import WSGIApp, Middleware
from .server import Server
from .async_server import AsyncServer
from .async_client import AsyncClient
from .async_drivers.asgi import ASGIApp
try:
from .async_drivers.tornado import get_tornado_handler
except ImportError: # pragma: no cover
5 years ago
get_tornado_handler = None
__all__ = ['Server', 'WSGIApp', 'Middleware', 'Client',
'AsyncServer', 'ASGIApp', 'get_tornado_handler', 'AsyncClient']