From f5648360a59a55750f8114f451bae0f71b39579d Mon Sep 17 00:00:00 2001 From: jellyfin-bot Date: Fri, 8 Nov 2024 02:39:55 +0000 Subject: [PATCH] Update API docs --- docs/api/components_data_ChannelData.bs.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/api/components_data_ChannelData.bs.html b/docs/api/components_data_ChannelData.bs.html index 9ee194203..3a12c2eab 100644 --- a/docs/api/components_data_ChannelData.bs.html +++ b/docs/api/components_data_ChannelData.bs.html @@ -7,7 +7,11 @@ sub setFields() json = m.top.json m.top.id = json.id - m.top.title = json.name + if isValid(json.number) + m.top.title = `${tr("CH")} ${json.number} ${json.name}` + else + m.top.title = json.name + end if m.top.live = true m.top.Type = "TvChannel" setPoster()