1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-27 23:06:29 -04:00

Fixed: Ignore '.unwanted' directory when importing.

fixes #2072
This commit is contained in:
Taloth Saldono
2017-07-27 15:27:54 +02:00
parent 90a42bcbad
commit 6fc4ea614d
10 changed files with 45 additions and 30 deletions
@@ -164,7 +164,7 @@ namespace NzbDrone.Core.MediaFiles
_logger.Debug("{0} folder quality: {1}", cleanedUpName, folderInfo.Quality);
}
var videoFiles = _diskScanService.GetVideoFiles(directoryInfo.FullName);
var videoFiles = _diskScanService.FilterFiles(directoryInfo.FullName, _diskScanService.GetVideoFiles(directoryInfo.FullName));
if (downloadClientItem == null)
{