New: Show updated rejection reasons in manual import after selecting series
This commit is contained in:
parent
4f15cd55be
commit
a6b8a34ac9
|
@ -42,6 +42,7 @@ namespace Sonarr.Api.V3.ManualImport
|
|||
|
||||
item.SeasonNumber = processedItem.SeasonNumber;
|
||||
item.Episodes = processedItem.Episodes.ToResource();
|
||||
item.Rejections = processedItem.Rejections;
|
||||
}
|
||||
|
||||
return items;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using System.Collections.Generic;
|
||||
using NzbDrone.Core.DecisionEngine;
|
||||
using Sonarr.Api.V3.Episodes;
|
||||
using Sonarr.Http.REST;
|
||||
|
||||
|
@ -11,5 +12,7 @@ namespace Sonarr.Api.V3.ManualImport
|
|||
public int? SeasonNumber { get; set; }
|
||||
public List<EpisodeResource> Episodes { get; set; }
|
||||
public string DownloadId { get; set; }
|
||||
|
||||
public IEnumerable<Rejection> Rejections { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue