Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/6eeaa46bbf3d3fdc46f6cca39c25284c9459cf12
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
6 additions and
2 deletions
@ -1696,6 +1696,7 @@ class EpisodesWanted(Resource):
TableShows . seriesType ) \
. join ( TableShows , on = ( TableEpisodes . sonarrSeriesId == TableShows . sonarrSeriesId ) ) \
. where ( wanted_condition ) \
. order_by ( TableEpisodes . rowid . desc ( ) ) \
. limit ( length ) \
. offset ( start ) \
. dicts ( )
@ -1749,7 +1750,7 @@ class MoviesWanted(Resource):
TableMovies . tags ,
TableMovies . monitored ) \
. where ( wanted_condition ) \
. order_by ( TableMovies . r adarrI d. desc ( ) ) \
. order_by ( TableMovies . r owi d. desc ( ) ) \
. limit ( length ) \
. offset ( start ) \
. dicts ( )
@ -8,6 +8,7 @@ from peewee import *
from playhouse . sqliteq import SqliteQueueDatabase
from playhouse . shortcuts import model_to_dict
from playhouse . migrate import *
from playhouse . sqlite_ext import RowIDField
from helper import path_mappings
from config import settings , get_array_from
@ -69,6 +70,7 @@ class TableBlacklistMovie(BaseModel):
class TableEpisodes ( BaseModel ) :
rowid = RowIDField ( )
audio_codec = TextField ( null = True )
audio_language = TextField ( null = True )
episode = IntegerField ( )
@ -140,6 +142,7 @@ class TableLanguagesProfiles(BaseModel):
class TableMovies ( BaseModel ) :
rowid = RowIDField ( )
alternativeTitles = TextField ( null = True )
audio_codec = TextField ( null = True )
audio_language = TextField ( null = True )
@ -163,7 +166,7 @@ class TableMovies(BaseModel):
subtitles = TextField ( null = True )
tags = TextField ( null = True )
title = TextField ( )
tmdbId = TextField ( primary_key = True )
tmdbId = TextField ( unique = True )
video_codec = TextField ( null = True )
year = TextField ( null = True )