ImportingNewDownload wasn't importing small files that weren't samples like it should.
This commit is contained in:
parent
54e7092e2d
commit
5179bce37e
|
@ -228,14 +228,12 @@ namespace NzbDrone.Core.Providers
|
||||||
var result = new List<EpisodeFile>();
|
var result = new List<EpisodeFile>();
|
||||||
|
|
||||||
//Get all the files except those that are considered samples
|
//Get all the files except those that are considered samples
|
||||||
var files = GetMediaFileList(path).Where(f => _diskProvider.GetSize(f) > 40000000 && !f.ToLower().Contains("sample")).ToList();
|
var files = GetMediaFileList(path).Where(f => _diskProvider.GetSize(f) > 40000000 || !f.ToLower().Contains("sample")).ToList();
|
||||||
|
|
||||||
foreach (var file in files)
|
foreach (var file in files)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
//Parse the filename
|
//Parse the filename
|
||||||
var parseResult = Parser.ParseEpisodeInfo(Path.GetFileName(file));
|
var parseResult = Parser.ParseEpisodeInfo(Path.GetFileName(file));
|
||||||
parseResult.Series = series;
|
parseResult.Series = series;
|
||||||
|
|
Loading…
Reference in New Issue