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/dce67fa8748d6991a251b95c1f4ff9203306fab6/libs/flask/__main__.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/flask/__main__.py

16 lines
254 B

# -*- coding: utf-8 -*-
"""
flask.__main__
~~~~~~~~~~~~~~
Alias for flask.run for the command line.
:copyright: 2010 Pallets
:license: BSD-3-Clause
"""
if __name__ == "__main__":
from .cli import main
main(as_module=True)