Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/0411b82e6549dd725182cfd81bfdfe1c7fb6c036?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
9 additions and
1 deletions
@ -74,7 +74,7 @@ namespace NzbDrone.Mono.Disk
{
{
_logger . Debug ( ex , "Failed to get filesystem types from {0}, using default set." , PROC_FILESYSTEMS_FILENAME ) ;
_logger . Debug ( ex , "Failed to get filesystem types from {0}, using default set." , PROC_FILESYSTEMS_FILENAME ) ;
}
}
if ( result . Empty ( ) )
if ( result . Empty ( ) )
{
{
foreach ( var type in _fixedTypes )
foreach ( var type in _fixedTypes )
@ -96,6 +96,7 @@ namespace NzbDrone.Mono.Disk
if ( split . Length ! = 6 )
if ( split . Length ! = 6 )
{
{
_logger . Debug ( "Unable to parse {0} line: {1}" , PROC_MOUNTS_FILENAME , line ) ;
_logger . Debug ( "Unable to parse {0} line: {1}" , PROC_MOUNTS_FILENAME , line ) ;
return null ;
}
}
var name = split [ 0 ] ;
var name = split [ 0 ] ;
@ -103,6 +104,13 @@ namespace NzbDrone.Mono.Disk
var type = split [ 2 ] ;
var type = split [ 2 ] ;
var options = ParseOptions ( split [ 3 ] ) ;
var options = ParseOptions ( split [ 3 ] ) ;
if ( ! mount . StartsWith ( "/" ) )
{
// Possible a namespace like 'net:[1234]'.
// But we just filter anything not starting with /, we're not interested in anything that isn't mounted somewhere.
return null ;
}
var driveType = FindDriveType . Find ( type ) ;
var driveType = FindDriveType . Find ( type ) ;
if ( name . StartsWith ( "/dev/" ) | | GetFileSystems ( ) . GetValueOrDefault ( type , false ) )
if ( name . StartsWith ( "/dev/" ) | | GetFileSystems ( ) . GetValueOrDefault ( type , false ) )