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

Fixed: Ignore more folder names when browsing file system

pull/6/head
Mark McDowall 9 years ago
parent 902d6929c0
commit f0437d1f22

@ -20,7 +20,7 @@ namespace NzbDrone.Common.Disk
private readonly HashSet<string> _setToRemove = new HashSet<string>
{
//Windows
// Windows
"boot",
"bootmgr",
"cache",
@ -32,14 +32,20 @@ namespace NzbDrone.Common.Disk
"temporary internet files",
"windows",
//OS X
// OS X
".fseventd",
".spotlight",
".trashes",
".vol",
"cachedmessages",
"caches",
"trash"
"trash",
// QNAP
".@__thumb",
// Synology
"@eadir"
};
public FileSystemLookupService(IDiskProvider diskProvider, Logger logger)

Loading…
Cancel
Save