Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/b5334da253561f566766e35fe0375056ed7eebe6
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
2 deletions
@ -13,7 +13,7 @@ namespace NzbDrone.Core.RootFolders
public int DefaultQualityProfileId { get ; set ; }
public MonitorTypes DefaultMonitorOption { get ; set ; }
public NewItemMonitorTypes DefaultNewItemMonitorOption { get ; set ; }
public HashSet < int > DefaultTags { get ; set ; }
public HashSet < int > DefaultTags { get ; set ; } = new ( ) ;
public bool IsCalibreLibrary { get ; set ; }
public CalibreSettings CalibreSettings { get ; set ; }
@ -108,7 +108,7 @@ namespace Readarr.Api.V1.RootFolders
DefaultQualityProfileId = resource . DefaultQualityProfileId ,
DefaultMonitorOption = resource . DefaultMonitorOption ,
DefaultNewItemMonitorOption = resource . DefaultNewItemMonitorOption ,
DefaultTags = resource . DefaultTags ,
DefaultTags = resource . DefaultTags ? ? new HashSet < int > ( ) ,
IsCalibreLibrary = resource . IsCalibreLibrary ,
CalibreSettings = cs
} ;