mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Forced downloads now have episode titles.
This commit is contained in:
parent
cef7b6a8dc
commit
06df8a86b6
2 changed files with 7 additions and 3 deletions
|
@ -124,7 +124,7 @@ namespace NzbDrone.Core.Providers
|
|||
|
||||
foreach (var episode in parseResult.EpisodeNumbers)
|
||||
{
|
||||
episodeString.Add(String.Format("{0}x{1}", parseResult.SeasonNumber, episode));
|
||||
episodeString.Add(String.Format("{0}x{1:00}", parseResult.SeasonNumber, episode));
|
||||
}
|
||||
|
||||
var epNumberString = String.Join("-", episodeString);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue