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

Remove special folder regardless of location

pull/2/head
Mark McDowall 11 years ago
parent 149a1c2b75
commit 47624ef704

@ -132,11 +132,8 @@ namespace NzbDrone.Core.RootFolders
results.Add(new UnmappedFolder { Name = di.Name, Path = di.FullName });
}
if (Path.GetPathRoot(path).Equals(path, StringComparison.InvariantCultureIgnoreCase))
{
var setToRemove = SpecialFolders;
results.RemoveAll(x => setToRemove.Contains(new DirectoryInfo(x.Path.ToLowerInvariant()).Name));
}
var setToRemove = SpecialFolders;
results.RemoveAll(x => setToRemove.Contains(new DirectoryInfo(x.Path.ToLowerInvariant()).Name));
Logger.Debug("{0} unmapped folders detected.", results.Count);
return results;

Loading…
Cancel
Save