Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/52c6b56a4c95792298efc42e5d6aedb59a9f26a9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
1 additions and
10 deletions
@ -36,6 +36,7 @@ namespace NzbDrone.Common.Serializer
serializerSettings . Converters . Add ( new STJTimeSpanConverter ( ) ) ;
serializerSettings . Converters . Add ( new STJUtcConverter ( ) ) ;
serializerSettings . Converters . Add ( new DictionaryStringObjectConverter ( ) ) ;
serializerSettings . Converters . Add ( new BooleanConverter ( ) ) ;
}
public static T Deserialize < T > ( string json )
@ -451,22 +451,16 @@ namespace NzbDrone.Core.Indexers.Definitions
[JsonPropertyName("tmdb_id")]
public string TmdbId { get ; set ; }
[JsonConverter(typeof(BooleanConverter))]
public bool Freeleech { get ; set ; }
[JsonConverter(typeof(BooleanConverter))]
public bool Promo25 { get ; set ; }
[JsonConverter(typeof(BooleanConverter))]
public bool Promo50 { get ; set ; }
[JsonConverter(typeof(BooleanConverter))]
public bool Promo75 { get ; set ; }
[JsonConverter(typeof(BooleanConverter))]
public bool Limited { get ; set ; }
[JsonConverter(typeof(BooleanConverter))]
public bool Internal { get ; set ; }
}
}
@ -1,5 +1,4 @@
using System.Text.Json.Serialization ;
using NzbDrone.Common.Serializer ;
namespace NzbDrone.Core.Indexers.Definitions.FileList ;
@ -23,15 +22,12 @@ public class FileListTorrent
[JsonPropertyName("imdb")]
public string ImdbId { get ; set ; }
[JsonConverter(typeof(BooleanConverter))]
public bool Internal { get ; set ; }
[JsonPropertyName("freeleech")]
[JsonConverter(typeof(BooleanConverter))]
public bool FreeLeech { get ; set ; }
[JsonPropertyName("doubleup")]
[JsonConverter(typeof(BooleanConverter))]
public bool DoubleUp { get ; set ; }
[JsonPropertyName("upload_date")]