Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/1b21f4a2d7d9c4ab5f3e5e96c0928bdf65278b52
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
21 additions and
2 deletions
@ -371,5 +371,22 @@ namespace NzbDrone.Core.Test.OrganizerTests
Subject . BuildFilename ( new List < Episode > { _episode1 } , _series , _episodeFile )
. Should ( ) . Be ( "30 Rock - 30.Rock.S01E01.xvid-LOL" ) ;
}
[Test]
public void should_trim_periods_from_end_of_episode_title ( )
{
_namingConfig . StandardEpisodeFormat = "{Series Title} - S{season:00}E{episode:00} - {Episode Title}" ;
_namingConfig . MultiEpisodeStyle = 3 ;
var episode = Builder < Episode > . CreateNew ( )
. With ( e = > e . Title = "Part 1." )
. With ( e = > e . SeasonNumber = 6 )
. With ( e = > e . EpisodeNumber = 6 )
. Build ( ) ;
Subject . BuildFilename ( new List < Episode > { episode } , new Series { Title = "30 Rock" } , _episodeFile )
. Should ( ) . Be ( "30 Rock - S06E06 - Part 1" ) ;
}
}
}
@ -44,6 +44,8 @@ namespace NzbDrone.Core.Organizer
public static readonly Regex SeriesTitleRegex = new Regex ( @"(?<token>\{(?:Series)(?<separator>\s|\.|-|_)Title\})" ,
RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly char [ ] EpisodeTitleTrimCharaters = new [ ] { ' ' , '.' } ;
public FileNameBuilder ( INamingConfigService namingConfigService ,
IQualityDefinitionService qualityDefinitionService ,
ICacheManger cacheManger ,
@ -88,7 +90,7 @@ namespace NzbDrone.Core.Organizer
var pattern = namingConfig . StandardEpisodeFormat ;
var episodeTitles = new List < string >
{
sortedEpisodes . First ( ) . Title
sortedEpisodes . First ( ) . Title . TrimEnd ( EpisodeTitleTrimCharaters )
} ;
var tokenValues = new Dictionary < string , string > ( FilenameBuilderTokenEqualityComparer . Instance ) ;
@ -140,7 +142,7 @@ namespace NzbDrone.Core.Organizer
break ;
}
episodeTitles . Add ( episode . Title );
episodeTitles . Add ( episode . Title .TrimEnd ( EpisodeTitleTrimCharaters ) );
}
seasonEpisodePattern = ReplaceNumberTokens ( seasonEpisodePattern , sortedEpisodes ) ;