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

Fixed: Improve paths longer than 256 on Windows failing to hardlink

(cherry picked from commit a97fbcc40a6247bf59678425cf460588fd4dbecd)
pull/4779/head
Mark McDowall 1 year ago committed by Bogdan
parent 5f248aa25e
commit 580e4becbe

@ -181,6 +181,11 @@ namespace NzbDrone.Windows.Disk
{
try
{
if (source.Length > 256 && !source.StartsWith(@"\\?\"))
{
source = @"\\?\" + source;
}
return CreateHardLink(destination, source, IntPtr.Zero);
}
catch (Exception ex)

Loading…
Cancel
Save