Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/5a15565d2be57aad088823e8cfa8569f3e3899dd You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Failing file copy when running in docker on synology with btrfs

Co-Authored-By: Taloth <Taloth@users.noreply.github.com>
pull/1807/head
Qstick 4 years ago
parent c92b254bb7
commit 5a15565d2b

@ -17,7 +17,7 @@ namespace NzbDrone.Mono.Interop
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…
Cancel
Save