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

Missing search now searches for episodes not in queue

pull/2/head
Mark McDowall 11 years ago
parent 64ea525f79
commit 187724f74c

@ -57,7 +57,7 @@ namespace NzbDrone.Core.IndexerSearch
FilterExpression = v => v.Monitored == true && v.Series.Monitored == true
}).Records.ToList();
var missing = episodes.Where(e => _queueService.GetQueue().Select(q => q.Episode.Id).Contains(e.Id));
var missing = episodes.Where(e => !_queueService.GetQueue().Select(q => q.Episode.Id).Contains(e.Id));
_logger.ProgressInfo("Performing missing search for {0} episodes", episodes.Count);
var downloadedCount = 0;

Loading…
Cancel
Save