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

New: Ensure folders are sorted alphabetically when importing

Closes 
pull/6/head
Mark McDowall 8 years ago
parent ef044f1ff5
commit 10264a5bfb

@ -160,7 +160,7 @@ namespace NzbDrone.Core.RootFolders
results.RemoveAll(x => setToRemove.Contains(new DirectoryInfo(x.Path.ToLowerInvariant()).Name));
_logger.Debug("{0} unmapped folders detected.", results.Count);
return results;
return results.OrderBy(u => u.Name, StringComparer.InvariantCultureIgnoreCase).ToList();
}
public RootFolder Get(int id)

Loading…
Cancel
Save