mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-24 06:17:08 -04:00
Fixed: Manual importing queued items with seriesId to avoid title parsing
This commit is contained in:
parent
64956d7be7
commit
08c0c5aa30
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ namespace Sonarr.Api.V3.ManualImport
|
|||
[Produces("application/json")]
|
||||
public List<ManualImportResource> GetMediaFiles(string folder, string downloadId, int? seriesId, int? seasonNumber, bool filterExistingFiles = true)
|
||||
{
|
||||
if (seriesId.HasValue)
|
||||
if (seriesId.HasValue && downloadId.IsNullOrWhiteSpace())
|
||||
{
|
||||
return _manualImportService.GetMediaFiles(seriesId.Value, seasonNumber).ToResource().Select(AddQualityWeight).ToList();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue