Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/6ab8d5224285fa2929a4d7b14f467813297b9d88
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -241,7 +241,7 @@ namespace Ombi.UI.Modules
private async Task < bool > AlreadyAvailable ( int id , string title , string year )
{
await Task . Yield ( ) ;
return IsMovieInCache ( id , String . Empty ) | | Checker. IsMovieAvailable ( plexMovies ( ) , title , year ) ;
return IsMovieInCache ( id , String . Empty ) | | Plex Checker. IsMovieAvailable ( plexMovies ( ) , title , year ) ;
}
private IEnumerable < PlexContent > plexMovies ( )
@ -249,7 +249,7 @@ namespace Ombi.UI.Modules
if ( _plexMovies = = null )
{
var content = PlexContentRepository . GetAll ( ) ;
_plexMovies = Checker. GetPlexMovies ( content ) ;
_plexMovies = Plex Checker. GetPlexMovies ( content ) ;
}
return _plexMovies ;
@ -434,7 +434,7 @@ namespace Ombi.UI.Modules
}
else if ( canSee )
{
bool exists = IsMovieInCache ( movie , imdbId) ;
bool exists = IsMovieInCache ( movie , v iewMovie. I mdbId) ;
viewMovie . Approved = exists ;
viewMovie . Requested = exists ;
}