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

12 lines
205 B

import logging
log = logging.getLogger(__name__)
__version__ = '0.7.0'
try:
from plex.client import Plex
except Exception as ex:
log.warn('Unable to import submodules - %s', ex, exc_info=True)