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

16 lines
520 B

from logging import logger
from typing import Any, Iterable, Set, Optional
class URLBase:
service_name: Optional[str]
protocol: Optional[str]
secure_protocol: Optional[str]
request_rate_per_sec: int
socket_connect_timeout: float
socket_read_timeout: float
tags: Set[str]
verify_certificate: bool
logger: logger
def url(self, privacy: bool = ..., *args: Any, **kwargs: Any) -> str: ...
def __contains__(self, tags: Iterable[str]) -> bool: ...
def __str__(self) -> str: ...