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

Fixed: Hidden files being ignored

(cherry picked from commit d493f8762fcb1684b44e182753c21d7a493db787)

Closes 
pull/9021/head
Mark McDowall 2 years ago committed by Bogdan
parent 2d72c1ef34
commit 4a4037323e

@ -162,6 +162,7 @@ namespace NzbDrone.Common.Disk
return Directory.EnumerateFiles(path, "*", new EnumerationOptions
{
AttributesToSkip = FileAttributes.System,
RecurseSubdirectories = recursive,
IgnoreInaccessible = true
});
@ -528,6 +529,7 @@ namespace NzbDrone.Common.Disk
return di.EnumerateFiles("*", new EnumerationOptions
{
AttributesToSkip = FileAttributes.System,
RecurseSubdirectories = recursive,
IgnoreInaccessible = true
}).ToList();

Loading…
Cancel
Save