Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/a679f1a6a17108fdd5692d91f49990350f252c84
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
2 deletions
@ -87,7 +87,7 @@ namespace PlexRequests.Services.Jobs
public int [ ] QueuedIds ( )
{
var movies = Cache . Get < CouchPotatoMovies > ( CacheKeys . CouchPotatoQueued ) ;
return movies ? . movies .Select ( x = > x . info . tmdb_id ) . ToArray ( ) ? ? new int [ ] { } ;
return movies ? . movies ? .Select ( x = > x . info . tmdb_id ) . ToArray ( ) ? ? new int [ ] { } ;
}
public void Execute ( IJobExecutionContext context )
@ -87,7 +87,7 @@ namespace PlexRequests.Services.Jobs
public int [ ] QueuedIds ( )
{
var tv = Cache . Get < SickrageShows > ( CacheKeys . SickRageQueued ) ;
return tv ? . data .Values . Select ( x = > x . tvdbid ) . ToArray ( ) ? ? new int [ ] { } ;
return tv ? . data ? .Values . Select ( x = > x . tvdbid ) . ToArray ( ) ? ? new int [ ] { } ;
}
public void Execute ( IJobExecutionContext context )