Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/839a2ac7424cd9a950931dffb8094496570440bb
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
36 additions and
3 deletions
@ -136,6 +136,23 @@ namespace NzbDrone.Common.Test
parentPath . IsParentPath ( childPath ) . Should ( ) . Be ( expectedResult ) ;
}
[TestCase(@"C:\Test\mydir", @"C:\Test")]
[TestCase(@"C:\Test\", @"C:")]
[TestCase(@"C:\", null)]
public void path_should_return_parent ( string path , string parentPath )
{
path . GetParentPath ( ) . Should ( ) . Be ( parentPath ) ;
}
[Test]
public void path_should_return_parent_for_oversized_path ( )
{
var path = @"/media/2e168617-f2ae-43fb-b88c-3663af1c8eea/downloads/sabnzbd/nzbdrone/Some.Real.Big.Thing/With.Alot.Of.Nested.Directories/Some.Real.Big.Thing/With.Alot.Of.Nested.Directories/Some.Real.Big.Thing/With.Alot.Of.Nested.Directories/Some.Real.Big.Thing/With.Alot.Of.Nested.Directories/Some.Real.Big.Thing/With.Alot.Of.Nested.Directories" ;
var parentPath = @"/media/2e168617-f2ae-43fb-b88c-3663af1c8eea/downloads/sabnzbd/nzbdrone/Some.Real.Big.Thing/With.Alot.Of.Nested.Directories/Some.Real.Big.Thing/With.Alot.Of.Nested.Directories/Some.Real.Big.Thing/With.Alot.Of.Nested.Directories/Some.Real.Big.Thing/With.Alot.Of.Nested.Directories/Some.Real.Big.Thing" ;
path . GetParentPath ( ) . Should ( ) . Be ( parentPath ) ;
}
[Test]
[Ignore]
public void should_not_be_parent_when_it_is_grandparent ( )
@ -53,6 +53,22 @@ namespace NzbDrone.Common
return childPath . Substring ( parentPath . Length ) . Trim ( Path . DirectorySeparatorChar ) ;
}
public static string GetParentPath ( this string childPath )
{
var parentPath = childPath . TrimEnd ( '\\' , '/' ) ;
var index = parentPath . LastIndexOfAny ( new [ ] { '\\' , '/' } ) ;
if ( index ! = - 1 )
{
return parentPath . Substring ( 0 , index ) ;
}
else
{
return null ;
}
}
public static bool IsParentPath ( this string parentPath , string childPath )
{
parentPath = parentPath . TrimEnd ( Path . DirectorySeparatorChar ) ;
@ -161,10 +161,10 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
if ( ! sabHistoryItem . Storage . IsNullOrWhiteSpace ( ) )
{
var parent = Directory. GetParent ( sabHistoryItem. Storage ) ;
if ( parent ! = null & & parent. Name = = sabHistoryItem . Title )
var parent = sabHistoryItem. Storage . GetParentPath ( ) ;
if ( parent ! = null & & Path. GetFileName ( parent ) = = sabHistoryItem . Title )
{
historyItem . OutputPath = parent .FullName ;
historyItem . OutputPath = parent ;
}
else
{