mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Fixed: ReleasePush module returns single item not a list
This commit is contained in:
parent
e2e321b9be
commit
9392c13364
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ namespace Lidarr.Api.V1.Indexers
|
||||||
throw new ValidationException(new List<ValidationFailure> { new ValidationFailure("Title", "Unable to parse", release.Title) });
|
throw new ValidationException(new List<ValidationFailure> { new ValidationFailure("Title", "Unable to parse", release.Title) });
|
||||||
}
|
}
|
||||||
|
|
||||||
return MapDecisions(new[] { firstDecision }).AsResponse();
|
return MapDecisions(new[] { firstDecision }).First().AsResponse();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ResolveIndexer(ReleaseInfo release)
|
private void ResolveIndexer(ReleaseInfo release)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue