Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/499b2225146164987a5c3724d329512f89be83e9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
5 deletions
@ -16,7 +16,7 @@ namespace NzbDrone.Core.Notifications.Plex
{
public interface IPlexServerProxy
{
List < PlexSection > Get Tv Sections( PlexServerSettings settings ) ;
List < PlexSection > Get Artist Sections( PlexServerSettings settings ) ;
void Update ( int sectionId , PlexServerSettings settings ) ;
void UpdateSeries ( int metadataId , PlexServerSettings settings ) ;
string Version ( PlexServerSettings settings ) ;
@ -35,7 +35,7 @@ namespace NzbDrone.Core.Notifications.Plex
_logger = logger ;
}
public List < PlexSection > Get Tv Sections( PlexServerSettings settings )
public List < PlexSection > Get Artist Sections( PlexServerSettings settings )
{
var request = GetPlexServerRequest ( "library/sections" , Method . GET , settings ) ;
var client = GetPlexServerClient ( settings ) ;
@ -48,7 +48,7 @@ namespace NzbDrone.Core.Notifications.Plex
{
return Json . Deserialize < PlexMediaContainerLegacy > ( response . Content )
. Sections
. Where ( d = > d . Type = = " show ")
. Where ( d = > d . Type = = " artist ")
. Select ( s = > new PlexSection
{
Id = s . Id ,
@ -62,7 +62,7 @@ namespace NzbDrone.Core.Notifications.Plex
return Json . Deserialize < PlexResponse < PlexSectionsContainer > > ( response . Content )
. MediaContainer
. Sections
. Where ( d = > d . Type = = " show ")
. Where ( d = > d . Type = = " artist ")
. ToList ( ) ;
}
@ -66,7 +66,7 @@ namespace NzbDrone.Core.Notifications.Plex
{
_logger . Debug ( "Getting sections from Plex host: {0}" , settings . Host ) ;
return _plexServerProxy . Get Tv Sections( settings ) . ToList ( ) ;
return _plexServerProxy . Get Artist Sections( settings ) . ToList ( ) ;
}
private bool PartialUpdatesAllowed ( PlexServerSettings settings , Version version )