Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/5179bce37ef808c4b2c3e2ce57e4b2ad04011992?style=unified&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

ImportingNewDownload wasn't importing small files that weren't samples like it should.

pull/6/head
Mark McDowall 14 years ago
parent 54e7092e2d
commit 5179bce37e

@ -228,14 +228,12 @@ namespace NzbDrone.Core.Providers
var result = new List<EpisodeFile>();
//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)
{
try
{
//Parse the filename
var parseResult = Parser.ParseEpisodeInfo(Path.GetFileName(file));
parseResult.Series = series;

Loading…
Cancel
Save