mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-23 13:57:06 -04:00
Prevent an edge case where a download is not marked as complete
This commit is contained in:
parent
be3b3df903
commit
d6dd13a6be
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ namespace NzbDrone.Core.Download.TrackedDownloads
|
|||
|
||||
var allEpisodesImportedInHistory = trackedDownload.RemoteEpisode.Episodes.All(e =>
|
||||
{
|
||||
var lastHistoryItem = historyItems.FirstOrDefault(h => h.EpisodeId == e.Id);
|
||||
var lastHistoryItem = historyItems.FirstOrDefault(h => h.DownloadId == trackedDownload.DownloadItem.DownloadId && h.EpisodeId == e.Id);
|
||||
|
||||
if (lastHistoryItem == null)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue