1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-05 13:21:25 -05:00

Fixed: Manual importing queued items with movieId to avoid title parsing

Fixes #10931
This commit is contained in:
Bogdan
2025-03-25 09:26:03 +02:00
parent d09fa6f880
commit 456ea3d57c

View File

@@ -25,7 +25,7 @@ namespace Radarr.Api.V3.ManualImport
[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();
}