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/9e75acd5493791879a3037a77c89ccddcb3844f4/libs/apprise/common.pyi You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/apprise/common.pyi

23 lines
447 B

import types
import typing as t
class NotifyType:
INFO: NotifyType
SUCCESS: NotifyType
WARNING: NotifyType
FAILURE: NotifyType
class NotifyFormat:
TEXT: NotifyFormat
HTML: NotifyFormat
MARKDOWN: NotifyFormat
class ContentLocation:
LOCAL: ContentLocation
HOSTED: ContentLocation
INACCESSIBLE: ContentLocation
NOTIFY_MODULE_MAP: t.Dict[str, t.Dict[str, t.Union[t.Type["NotifyBase"], types.ModuleType]]]