Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/88cdfea9a9d1ef7860773581bcbc74c3cc9bea51
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
3 deletions
@ -160,7 +160,8 @@ namespace Ombi.Schedule.Jobs.Plex
foreach ( var content in allContent )
{
if ( content . viewGroup . Equals ( PlexMediaType . Episode . ToString ( ) , StringComparison . CurrentCultureIgnoreCase ) )
Logger . LogDebug ( $"Got type '{content.viewGroup}' to process" ) ;
if ( content . viewGroup . Equals ( PlexMediaType . Episode . ToString ( ) , StringComparison . InvariantCultureIgnoreCase ) )
{
Logger . LogDebug ( "Found some episodes, this must be a recently added sync" ) ;
var count = 0 ;
@ -204,7 +205,7 @@ namespace Ombi.Schedule.Jobs.Plex
episodesProcessed . AddRange ( episodesAdded . Select ( x = > x . Id ) ) ;
}
}
if ( content . viewGroup . Equals ( PlexMediaType . Show . ToString ( ) , StringComparison . Curre ntCultureIgnoreCase) )
if ( content . viewGroup . Equals ( PlexMediaType . Show . ToString ( ) , StringComparison . Invaria ntCultureIgnoreCase) )
{
// Process Shows
Logger . LogDebug ( "Processing TV Shows" ) ;
@ -234,7 +235,7 @@ namespace Ombi.Schedule.Jobs.Plex
await Repo . SaveChangesAsync ( ) ;
}
if ( content . viewGroup . Equals ( PlexMediaType . Movie . ToString ( ) , StringComparison . Curre ntCultureIgnoreCase) )
if ( content . viewGroup . Equals ( PlexMediaType . Movie . ToString ( ) , StringComparison . Invaria ntCultureIgnoreCase) )
{
Logger . LogDebug ( "Processing Movies" ) ;
foreach ( var movie in content ? . Metadata ? ? new Metadata [ ] { } )