Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/8a55de2b71b5472fccabd1bcb842ea140095f871
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
11 additions and
0 deletions
@ -121,6 +121,12 @@ namespace Ombi.Services.Jobs.RecentlyAddedNewsletter
var filteredSeries = series . Where ( x = > recentlyAdded . All ( c = > c . ProviderId ! = x . ProviderId ) ) . ToList ( ) ;
var info = new List < PlexRecentlyAddedModel > ( ) ;
if ( test & & ! filteredMovies . Any ( ) )
{
// if this is a test make sure we show something
filteredMovies = movie . Take ( 5 ) . ToList ( ) ;
}
foreach ( var m in filteredMovies )
{
var i = Api . GetMetadata ( plexSettings . PlexAuthToken , plexSettings . FullUri , m . ItemId ) ;
@ -178,6 +184,11 @@ namespace Ombi.Services.Jobs.RecentlyAddedNewsletter
}
else
{
if ( test & & ! filteredSeries . Any ( ) )
{
// if this is a test make sure we show something
filteredSeries = series . Take ( 5 ) . ToList ( ) ;
}
foreach ( var t in filteredSeries )
{
var i = Api . GetMetadata ( plexSettings . PlexAuthToken , plexSettings . FullUri , t . ItemId ) ;