1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-10-30 07:22:35 +01:00

Fixed: Double periods in extra file names after rename

This commit is contained in:
Mark McDowall 2017-04-11 20:32:34 -07:00
parent 41f769790d
commit 413ce1d9a7

View File

@ -90,7 +90,6 @@ namespace NzbDrone.Core.Extras.Files
filenameBuilder.Append(fileNameSuffix);
}
filenameBuilder.Append(".");
filenameBuilder.Append(extraFile.Extension);
var existingFileName = Path.Combine(series.Path, extraFile.RelativePath);