Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/25aa3b60b0bfa0ce8b3b1cc0ba31a10fe2a0d9b7
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
2 additions and
13 deletions
@ -1,14 +1,4 @@
using System ;
using System.Collections.Generic ;
using System.Diagnostics ;
using System.IO ;
using System.Linq ;
using System.Net ;
using NLog ;
using NzbDrone.Common.Cache ;
using NzbDrone.Common.EnvironmentInfo ;
using NzbDrone.Common.Extensions ;
using NzbDrone.Common.TPL ;
namespace NzbDrone.Common.Http.Dispatchers
{
@ -7,7 +7,6 @@ using System.Net;
using NLog ;
using NzbDrone.Common.Cache ;
using NzbDrone.Common.EnvironmentInfo ;
using NzbDrone.Common.Extensions ;
using NzbDrone.Common.Http.Dispatchers ;
using NzbDrone.Common.TPL ;
@ -126,7 +126,7 @@ namespace NzbDrone.Core.Indexers.Newznab
protected string TryGetNewznabAttribute ( XElement item , string key , string defaultValue = "" )
{
var attr = item . Elements ( ns + "attr" ) . Single OrDefault( e = > e . Attribute ( "name" ) . Value . Equals ( key , StringComparison . CurrentCultureIgnoreCase ) ) ;
var attr = item . Elements ( ns + "attr" ) . First OrDefault( e = > e . Attribute ( "name" ) . Value . Equals ( key , StringComparison . CurrentCultureIgnoreCase ) ) ;
if ( attr ! = null )
{
@ -169,7 +169,7 @@ namespace NzbDrone.Core.Indexers.Torznab
protected string TryGetTorznabAttribute ( XElement item , string key , string defaultValue = "" )
{
var attr = item . Elements ( ns + "attr" ) . Single OrDefault( e = > e . Attribute ( "name" ) . Value . Equals ( key , StringComparison . CurrentCultureIgnoreCase ) ) ;
var attr = item . Elements ( ns + "attr" ) . First OrDefault( e = > e . Attribute ( "name" ) . Value . Equals ( key , StringComparison . CurrentCultureIgnoreCase ) ) ;
if ( attr ! = null )
{