Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/1a40839202a98e9b1356bb5ea1076e149fbc7d44
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
9 additions and
1 deletions
@ -221,6 +221,7 @@ namespace NzbDrone.Core.Download.Clients.Transmission
"seedIdleLimit" ,
"seedIdleMode" ,
"fileCount" ,
"file-count" ,
"labels"
} ;
@ -1,5 +1,6 @@
using System ;
using System.Collections.Generic ;
using Newtonsoft.Json ;
namespace NzbDrone.Core.Download.Clients.Transmission
{
@ -24,6 +25,12 @@ namespace NzbDrone.Core.Download.Clients.Transmission
public int SeedRatioMode { get ; set ; }
public long SeedIdleLimit { get ; set ; }
public int SeedIdleMode { get ; set ; }
public int FileCount { get ; set ; }
public int FileCount = > TransmissionFileCount ? ? VuzeFileCount ? ? 0 ;
[JsonProperty(PropertyName = "file-count")]
public int? TransmissionFileCount { get ; set ; }
[JsonProperty(PropertyName = "fileCount")]
public int? VuzeFileCount { get ; set ; }
}
}