Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/976bc1a6a5008aebc854ada5ed544e5c6a76bfcf
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -17,13 +17,13 @@ namespace NzbDrone.Mono.Disk
private static readonly Logger Logger = NzbDroneLogger . GetLogger ( typeof ( DiskProvider ) ) ;
private readonly IProcMountProvider _procMountProvider ;
private readonly ISymb olic LinkResolver _symLinkResolver ;
private readonly ISymb LinkResolver _symLinkResolver ;
// Mono supports sending -1 for a uint to indicate that the owner or group should not be set
// `unchecked((uint)-1)` and `uint.MaxValue` are the same thing.
private const uint UNCHANGED_ID = uint . MaxValue ;
public DiskProvider ( IProcMountProvider procMountProvider , ISymb olic LinkResolver symLinkResolver )
public DiskProvider ( IProcMountProvider procMountProvider , ISymb LinkResolver symLinkResolver )
{
_procMountProvider = procMountProvider ;
_symLinkResolver = symLinkResolver ;
@ -31,7 +31,7 @@ namespace NzbDrone.Mono.Disk
public override IMount GetMount ( string path )
{
path = _symLinkResolver . GetComplete Real Path( path ) ;
path = _symLinkResolver . GetComplete Path( path ) ;
return base . GetMount ( path ) ;
}