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:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user