1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 18:42:42 +01:00

Episodes will actually be renamed now

This commit is contained in:
Mark McDowall 2013-09-01 21:03:49 -07:00
parent ffce325edb
commit e4d7ea9fd8

View File

@ -43,6 +43,7 @@ public string MoveEpisodeFile(EpisodeFile episodeFile, Series series)
var episodes = _episodeService.GetEpisodesByFileId(episodeFile.Id);
var newFileName = _buildFileNames.BuildFilename(episodes, series, episodeFile);
var filePath = _buildFileNames.BuildFilePath(series, episodes.First().SeasonNumber, newFileName, Path.GetExtension(episodeFile.Path));
MoveFile(episodeFile, filePath);
return filePath;
}
@ -52,6 +53,7 @@ public string MoveEpisodeFile(EpisodeFile episodeFile, LocalEpisode localEpisode
var newFileName = _buildFileNames.BuildFilename(localEpisode.Episodes, localEpisode.Series, episodeFile);
var filePath = _buildFileNames.BuildFilePath(localEpisode.Series, localEpisode.SeasonNumber, newFileName, Path.GetExtension(episodeFile.Path));
MoveFile(episodeFile, filePath);
return filePath;
}