mirror of
https://github.com/Sonarr/Sonarr
synced 2026-05-08 04:50:56 +02:00
Fix listing media files for specific series with Manage Episodes
This commit is contained in:
parent
bf5d48c76a
commit
2a1da3dda6
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ public ManualImportController(IManualImportService manualImportService)
|
|||
|
||||
[HttpGet]
|
||||
[Produces("application/json")]
|
||||
public Ok<List<ManualImportResource>> GetMediaFiles(string? folder, [FromQuery] string[]? downloadIds, int? seriesId, int? seasonNumber, bool filterExistingFiles = true)
|
||||
public Ok<List<ManualImportResource>> GetMediaFiles(string? folder, int? seriesId, int? seasonNumber, [FromQuery] string[]? downloadIds = null, bool filterExistingFiles = true)
|
||||
{
|
||||
if (seriesId.HasValue && downloadIds == null)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue