Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/529f65339fae34135edb5957c5974de953fbefec
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
5 additions and
9 deletions
@ -3,7 +3,7 @@ using FluentValidation;
using NLog ;
using Nancy ;
using NzbDrone.Api.Extensions ;
using NzbDrone.Co mmon.Exceptions ;
using NzbDrone.Co re ;
using HttpStatusCode = Nancy . HttpStatusCode ;
namespace NzbDrone.Api.ErrorManagement
@ -88,7 +88,6 @@
<Compile Include= "EnvironmentInfo\StartupArguments.cs" />
<Compile Include= "EnvironmentInfo\RuntimeInfo.cs" />
<Compile Include= "EnvironmentInfo\OsInfo.cs" />
<Compile Include= "Exceptions\NzbDroneClientException.cs" />
<Compile Include= "Exceptions\NzbDroneException.cs" />
<Compile Include= "IEnumerableExtensions.cs" />
<Compile Include= "Instrumentation\GlobalExceptionHandlers.cs" />
@ -1,9 +1,4 @@
using System ;
using System.Collections.Generic ;
using System.Linq ;
using System.Net ;
using System.Text ;
using NzbDrone.Common.Exceptions ;
using System.Net ;
namespace NzbDrone.Core.MetadataSource.Trakt
{
@ -224,6 +224,7 @@
<Compile Include= "Instrumentation\Commands\TrimLogCommand.cs" />
<Compile Include= "Instrumentation\DeleteLogFilesService.cs" />
<Compile Include= "MetadataSource\Trakt\TraktException.cs" />
<Compile Include= "NzbDroneClientException.cs" />
<Compile Include= "ProgressMessaging\NewProgressMessageEvent.cs" />
<Compile Include= "ProgressMessaging\ProgressMessage.cs" />
<Compile Include= "ProgressMessaging\ProgressMessageTarget.cs" />
@ -1,6 +1,7 @@
using System.Net ;
using NzbDrone.Common.Exceptions ;
namespace NzbDrone.Co mmon.Exceptions
namespace NzbDrone.Co re
{
public class NzbDroneClientException : NzbDroneException
{