Save TVChannel Height if set (#8777)

Co-authored-by: Cody Robibero <cody@robibe.ro>
pull/9468/head
SenorSmartyPants 1 year ago committed by GitHub
parent 6351d1022b
commit 369c7f1451
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -246,6 +246,11 @@ public class ItemUpdateController : BaseJellyfinApiController
episode.AirsBeforeSeasonNumber = request.AirsBeforeSeasonNumber;
}
if (request.Height is not null && item is LiveTvChannel channel)
{
channel.Height = request.Height.Value;
}
item.Tags = request.Tags;
if (request.Taglines is not null)

Loading…
Cancel
Save