mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
fixed gzip for static resource.
This commit is contained in:
parent
92c3fe61f2
commit
51fb6376b9
2 changed files with 18 additions and 6 deletions
|
@ -48,7 +48,12 @@ namespace NzbDrone.Api.Series
|
|||
return new NotFoundResponse();
|
||||
}
|
||||
|
||||
return series.AsResponse();
|
||||
|
||||
var resource = ToResource(()=>_seriesService.FindBySlug(slug));
|
||||
|
||||
MapCoversToLocal(resource);
|
||||
|
||||
return resource.AsResponse();
|
||||
}
|
||||
|
||||
private List<SeriesResource> AllSeries()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue