Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/c6bbc52631cf807682fa74362310005fb8582630?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
7 additions and
0 deletions
@ -1,5 +1,6 @@
using System ;
using System ;
using System.Collections.Generic ;
using System.Collections.Generic ;
using Newtonsoft.Json ;
using NzbDrone.Api.REST ;
using NzbDrone.Api.REST ;
using NzbDrone.Core.Update ;
using NzbDrone.Core.Update ;
using NzbDrone.Api.Mapping ;
using NzbDrone.Api.Mapping ;
@ -32,7 +33,13 @@ namespace NzbDrone.Api.Update
public class UpdateResource : RestResource
public class UpdateResource : RestResource
{
{
public String Id { get ; set ; }
[JsonConverter(typeof(Newtonsoft.Json.Converters.VersionConverter))]
public Version Version { get ; set ; }
public Version Version { get ; set ; }
public String Branch { get ; set ; }
public DateTime ReleaseDate { get ; set ; }
public String FileName { get ; set ; }
public String FileName { get ; set ; }
public String Url { get ; set ; }
public String Url { get ; set ; }
}
}