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/20d235e1b511d5c31e4fdeaf381f749130e1dc7b/libs/rich/region.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/rich/region.py

11 lines
166 B

from typing import NamedTuple
class Region(NamedTuple):
"""Defines a rectangular region of the screen."""
x: int
y: int
width: int
height: int