mirror of
https://github.com/jellyfin/jellyfin-roku.git
synced 2024-11-23 06:09:41 +00:00
Merge pull request #2032 from michaelcresswell/livetv-osd
This commit is contained in:
commit
f536251f28
@ -115,6 +115,21 @@ sub LoadItems_AddVideoContent(video as object, mediaSourceId as dynamic, audio_s
|
||||
end if
|
||||
end if
|
||||
|
||||
if videotype = "tvchannel" and isValid(meta.json) and isValid(meta.json.CurrentProgram)
|
||||
if isValid(meta.json.CurrentProgram.Name)
|
||||
meta.title = `${meta.title}: ${meta.json.CurrentProgram.Name}`
|
||||
end if
|
||||
if isValid(meta.json.CurrentProgram.ParentIndexNumber)
|
||||
video.seasonNumber = meta.json.CurrentProgram.ParentIndexNumber
|
||||
end if
|
||||
if isValid(meta.json.CurrentProgram.IndexNumber)
|
||||
video.episodeNumber = meta.json.CurrentProgram.IndexNumber
|
||||
end if
|
||||
if isValid(meta.json.CurrentProgram.IndexNumberEnd)
|
||||
video.episodeNumberEnd = meta.json.CurrentProgram.IndexNumberEnd
|
||||
end if
|
||||
end if
|
||||
|
||||
video.chapters = meta.json.Chapters
|
||||
video.content.title = meta.title
|
||||
video.showID = meta.showID
|
||||
|
@ -412,7 +412,7 @@ sub onVideoContentLoaded()
|
||||
m.osd.itemTitleText = m.top.content.title
|
||||
|
||||
' If video is an episode, attempt to add season and episode numbers to OSD
|
||||
if m.top.content.contenttype = 4
|
||||
if m.top.content.contenttype = 4 or m.top.content.live
|
||||
if isValid(videoContent[0].seasonNumber)
|
||||
m.osd.seasonNumber = videoContent[0].seasonNumber
|
||||
end if
|
||||
|
Loading…
Reference in New Issue
Block a user