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/d93310876624a0b796d71263b13913e7934bcc4e/libs/plex_activity/sources/base.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/plex_activity/sources/base.py

25 lines
510 B

6 years ago
from pyemitter import Emitter
from threading import Thread
import logging
log = logging.getLogger(__name__)
class Source(Emitter):
name = None
def __init__(self):
self.thread = Thread(target=self._run_wrapper)
def start(self):
self.thread.start()
def run(self):
pass
def _run_wrapper(self):
try:
self.run()
except Exception as ex:
log.error('Exception raised in "%s" activity source: %s', self.name, ex, exc_info=True)