1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-23 22:25:56 -04:00

New: Reduce size of Custom Formats in responses for most endpoints

This commit is contained in:
Mark McDowall
2022-12-10 10:26:15 -08:00
committed by Mark McDowall
parent fc8e6d6f02
commit 4ce4031dd8
8 changed files with 24 additions and 18 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ namespace Sonarr.Api.V3.Queue
Episode = includeEpisode && model.Episode != null ? model.Episode.ToResource() : null,
Languages = model.Languages,
Quality = model.Quality,
CustomFormats = model.RemoteEpisode?.CustomFormats?.ToResource(),
CustomFormats = model.RemoteEpisode?.CustomFormats?.ToResource(false),
Size = model.Size,
Title = model.Title,
Sizeleft = model.Sizeleft,