Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/4010a5336c14d2fff73346a9939c84148d3fe663
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
2 deletions
@ -4,6 +4,7 @@ using System.Linq;
using Newtonsoft.Json.Linq ;
using NLog ;
using NzbDrone.Common.Cache ;
using NzbDrone.Common.EnvironmentInfo ;
using NzbDrone.Common.Extensions ;
using NzbDrone.Common.Serializer ;
using NzbDrone.Core.Rest ;
@ -90,8 +91,8 @@ namespace NzbDrone.Core.Notifications.Plex
request . AddHeader ( "X-Plex-Provides" , "player" ) ;
request . AddHeader ( "X-Plex-Client-Identifier" , "AB6CCCC7-5CF5-4523-826A-B969E0FFD8A0" ) ;
request . AddHeader ( "X-Plex-Device-Name" , "Sonarr" ) ;
request . AddHeader ( "X-Plex-Product" , " PlexWMC ") ;
request . AddHeader ( "X-Plex-Version" , "0" ) ;
request . AddHeader ( "X-Plex-Product" , " Sonarr ") ;
request . AddHeader ( "X-Plex-Version" , BuildInfo . Version . ToString ( ) ) ;
return request ;
}