Ensure the movie isn't delete when the folder isn't renamed (#491)

This commit is contained in:
Tim Turner 2017-01-27 21:24:01 -05:00 committed by GitHub
parent e2d6e39168
commit 8168cf82c5
1 changed files with 3 additions and 1 deletions

View File

@ -138,6 +138,8 @@ namespace NzbDrone.Core.MediaFiles
_mediaFileAttributeService.SetFilePermissions(destinationFilePath);
if(oldMoviePath != newMoviePath)
_diskProvider.DeleteFolder(oldMoviePath, true);
return movieFile;