Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/5fab67bca0e43cc914bab667faf955a248fa41dd
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
6 deletions
@ -9,7 +9,6 @@ import pretty
import time
import socket
import requests
import tzlocal
from subliminal_patch . exceptions import TooManyRequests , APIThrottled , ParseResponseError , IPAddressBlocked , \
MustGetBlacklisted , SearchLimitReached
@ -2,10 +2,8 @@
import os
import requests
import mimetypes
from flask import request , redirect , abort , render_template , Response , session , send_file , stream_with_context , \
send_from_directory , Blueprint
from flask import request , abort , render_template , Response , session , send_file , stream_with_context , Blueprint
from functools import wraps
from urllib . parse import unquote
@ -26,8 +24,8 @@ ui_bp = Blueprint('ui', __name__,
static_url_path = ' /assets ' )
static_bp = Blueprint ( ' images ' , __name__ ,
static_folder = os . path . join ( os . path . dirname ( os . path . dirname ( os . path . dirname ( __file__ ) ) ) , ' frontend ' ,
' build ' , ' images ' ) , static_url_path = ' /images ' )
static_folder = os . path . join ( os . path . dirname ( os . path . dirname ( os . path . dirname ( __file__ ) ) ) ,
' frontend ' , ' build ' , ' images ' ) , static_url_path = ' /images ' )
ui_bp . register_blueprint ( static_bp )