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/2658638f384aac50a47d6fe5c0264171ae9bcb16/custom_libs/signalr/events/_events.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/custom_libs/signalr/events/_events.py

16 lines
377 B

class EventHook(object):
def __init__(self):
self._handlers = []
def __iadd__(self, handler):
self._handlers.append(handler)
return self
def __isub__(self, handler):
self._handlers.remove(handler)
return self
def fire(self, *args, **kwargs):
for handler in self._handlers:
handler(*args, **kwargs)