Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/208feb7d19fa32b703573b96f3d535484f73142f?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
23 additions and
13 deletions
@ -349,5 +349,15 @@ namespace NzbDrone.Core.Test
}
[Test]
[TestCase("Law & Order: Criminal Intent - S10E07 - Icarus [HDTV] ", " Law & Order - Criminal Intent - S10E07 - Icarus [ HDTV ] ")]
public void CleanFileName ( string name , string expectedName )
{
//Act
var result = MediaFileProvider . CleanFilename ( name ) ;
//Assert
Assert . AreEqual ( expectedName , result ) ;
}
}
}
@ -55,17 +55,5 @@ namespace NzbDrone.Core.Helpers
return String . Format ( "{0} - S{1:00}E{2} - {3}" , erm . SeriesName , erm . EpisodeFile . Episodes [ 0 ] . SeasonNumber ,
epNumberString , epNameString ) ;
}
public static string CleanFilename ( string name )
{
string result = name ;
string [ ] badCharacters = { "\\" , "/" , "<" , ">" , "?" , "*" , ":" , "|" , "\"" } ;
string [ ] goodCharacters = { "+" , "+" , "{" , "}" , "!" , "@" , "-" , "#" , "`" } ;
for ( int i = 0 ; i < badCharacters . Length ; i + + )
result = result . Replace ( badCharacters [ i ] , goodCharacters [ i ] ) ;
return result . Trim ( ) ;
}
}
}
@ -129,6 +129,18 @@ namespace NzbDrone.Core.Providers
result = result . Replace ( ' ' , '.' ) ;
Logger . Debug ( "New File Name is: {0}" , result . Trim ( ) ) ;
return CleanFilename ( result . Trim ( ) ) ;
}
public static string CleanFilename ( string name )
{
string result = name ;
string [ ] badCharacters = { "\\" , "/" , "<" , ">" , "?" , "*" , ":" , "|" , "\"" } ;
string [ ] goodCharacters = { "+" , "+" , "{" , "}" , "!" , "@" , "-" , "#" , "`" } ;
for ( int i = 0 ; i < badCharacters . Length ; i + + )
result = result . Replace ( badCharacters [ i ] , goodCharacters [ i ] ) ;
return result . Trim ( ) ;
}
}
@ -129,7 +129,7 @@ namespace NzbDrone.Web.Controllers
var path =
rootPath . Replace ( '|' , Path . DirectorySeparatorChar ) . Replace ( '^' , Path . VolumeSeparatorChar ) . Replace (
'`' , '\'' ) +
Path . DirectorySeparatorChar + EpisodeRenameHelp er. CleanFilename ( seriesName ) ;
Path . DirectorySeparatorChar + MediaFileProvid er. CleanFilename ( seriesName ) ;
//Create the folder for the new series and then Add it
_diskProvider . CreateDirectory ( path ) ;