diff --git a/src/NzbDrone.Common/Http/HttpClient.cs b/src/NzbDrone.Common/Http/HttpClient.cs index 5ddfa9f60..99327ee76 100644 --- a/src/NzbDrone.Common/Http/HttpClient.cs +++ b/src/NzbDrone.Common/Http/HttpClient.cs @@ -249,6 +249,10 @@ namespace NzbDrone.Common.Http var response = Get(request); } stopWatch.Stop(); + if (File.Exists(fileName)) + { + File.Delete(fileName); + } File.Move(fileNamePart, fileName); _logger.Debug("Downloading Completed. took {0:0}s", stopWatch.Elapsed.Seconds); }