Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/9bcbd79f7869228c839c2b57852746bf9c0c3673
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
9 additions and
4 deletions
@ -486,14 +486,19 @@ def wanted_search_missing_subtitles():
c = db . cursor ( )
if settings . sonarr . getboolean ( ' only_monitored ' ) :
monitored_only_query_string = ' AND monitored = " True " '
monitored_only_query_string _sonarr = ' AND monitored = " True " '
else :
monitored_only_query_string = " "
monitored_only_query_string_sonarr = " "
if settings . radarr . getboolean ( ' only_monitored ' ) :
monitored_only_query_string_radarr = ' AND monitored = " True " '
else :
monitored_only_query_string_radarr = " "
c . execute ( " SELECT path_substitution(path) FROM table_episodes WHERE missing_subtitles != ' [] ' " + monitored_only_query_string )
c . execute ( " SELECT path_substitution(path) FROM table_episodes WHERE missing_subtitles != ' [] ' " + monitored_only_query_string _sonarr )
episodes = c . fetchall ( )
c . execute ( " SELECT path_substitution_movie(path) FROM table_movies WHERE missing_subtitles != ' [] ' " + monitored_only_query_string )
c . execute ( " SELECT path_substitution_movie(path) FROM table_movies WHERE missing_subtitles != ' [] ' " + monitored_only_query_string _radarr )
movies = c . fetchall ( )
c . close ( )