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

Fixed: Failing to search for recently added series when there are unknown items in the queue

pull/2900/head
Mark McDowall 6 years ago
parent edd6c0bd4c
commit a3baab9671

@ -126,7 +126,7 @@ namespace NzbDrone.Core.IndexerSearch
episodes = _episodeService.EpisodesWithoutFiles(pagingSpec).Records.ToList();
}
var queue = _queueService.GetQueue().Select(q => q.Episode.Id);
var queue = _queueService.GetQueue().Where(q => q.Episode != null).Select(q => q.Episode.Id);
var missing = episodes.Where(e => !queue.Contains(e.Id)).ToList();
SearchForMissingEpisodes(missing, message.Trigger == CommandTrigger.Manual);

Loading…
Cancel
Save