mirror of
https://github.com/Radarr/Radarr
synced 2026-03-01 10:02:57 +01:00
Fixed: Failing file copy when running in docker on synology with btrfs
This commit is contained in:
parent
35532b6789
commit
ff3e53a71b
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ internal static class NativeMethods
|
|||
|
||||
public static SafeUnixHandle open(string pathname, OpenFlags flags)
|
||||
{
|
||||
return new SafeUnixHandle(Syscall.open(pathname, flags));
|
||||
return new SafeUnixHandle(Syscall.open(pathname, flags, FilePermissions.DEFFILEMODE));
|
||||
}
|
||||
|
||||
internal static int clone_file(SafeUnixHandle link_fd, SafeUnixHandle src_fd)
|
||||
|
|
|
|||
Loading…
Reference in a new issue