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

Don't filter excluded files twice

pull/4/head
Mark McDowall 10 years ago
parent 69dd1c6ec4
commit 57bcc9f4c1

@ -125,7 +125,6 @@ namespace NzbDrone.Core.MediaFiles
var filesOnDisk = _diskProvider.GetFiles(path, searchOption);
var mediaFileList = filesOnDisk.Where(file => MediaFileExtensions.Extensions.Contains(Path.GetExtension(file).ToLower()))
.Where(file => !ExcludedFilesRegex.IsMatch(Path.GetFileName(file)))
.ToList();
_logger.Debug("{0} video files were found in {1}", mediaFileList.Count, path);

Loading…
Cancel
Save