mirror of
https://github.com/Radarr/Radarr
synced 2025-12-22 08:15:36 +01:00
Fixed: Manual importing queued items with movieId to avoid title parsing
Fixes #10931
This commit is contained in:
parent
d09fa6f880
commit
456ea3d57c
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ public ManualImportController(IManualImportService manualImportService)
|
|||
[Produces("application/json")]
|
||||
public List<ManualImportResource> GetMediaFiles(string folder, string downloadId, int? movieId, bool filterExistingFiles = true)
|
||||
{
|
||||
if (movieId.HasValue)
|
||||
if (movieId.HasValue && downloadId.IsNullOrWhiteSpace())
|
||||
{
|
||||
return _manualImportService.GetMediaFiles(movieId.Value).ToResource().Select(AddQualityWeight).ToList();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue