Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/415e9ecbae855f419c28069ef638c57d28057092
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
@ -139,7 +139,7 @@ namespace Ombi.Schedule.Jobs.Ombi
private async Task StartEmbyTv ( )
{
var allTv = _embyRepo . GetAll ( ) . Where ( x = >
x . Type = = EmbyMediaType . Series & & ( ! x . TheMovieDbId . HasValue ( ) | | ! x . ImdbId . HasValue ( ) | | ! x . TvDbId . HasValue ( ) ) ) ;
x . Type = = EmbyMediaType . Series & & ( x . TheMovieDbId = = null | | x . ImdbId = = null | | x . TvDbId = = null ) ) ;
foreach ( var show in allTv )
{
@ -204,7 +204,7 @@ namespace Ombi.Schedule.Jobs.Ombi
private async Task StartEmbyMovies ( EmbySettings settings )
{
var allMovies = _embyRepo . GetAll ( ) . Where ( x = >
x . Type = = EmbyMediaType . Movie & & ( ! x . TheMovieDbId . HasValue ( ) | | ! x . ImdbId . HasValue ( ) ) ) ;
x . Type = = EmbyMediaType . Movie & & ( x . TheMovieDbId = = null | | x . ImdbId = = null ) ) ;
foreach ( var movie in allMovies )
{
movie . ImdbId . HasValue ( ) ;