mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 09:59:06 -07:00
Save TVChannel Height if set (#8777)
Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
parent
6351d1022b
commit
369c7f1451
@ -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…
Reference in New Issue
Block a user