Fixed: Copy linux permission mask when moving folder to recycle bin folder

fixes #3161
This commit is contained in:
Taloth Saldono
2019-09-07 12:12:22 +02:00
committed by Qstick
parent 38a590798b
commit bd71e71386
7 changed files with 69 additions and 1 deletions
@@ -76,6 +76,8 @@ namespace NzbDrone.Common.Disk
if (!_diskProvider.FolderExists(targetPath))
{
_diskProvider.CreateFolder(targetPath);
_diskProvider.CopyPermissions(sourcePath, targetPath);
}
var result = mode;