Only show the "Next Episode" button for episodes

This commit is contained in:
Charles Ewert 2023-10-29 11:06:28 -04:00
parent dded75f307
commit 21b3fce266

View File

@ -218,6 +218,9 @@ end sub
' Checks if we need to display the Next Episode button
sub checkTimeToDisplayNextEpisode()
' only display the Next Episode button when the content is type "Episode"
if m.top.content.contenttype <> 4 then return
if int(m.top.position) >= (m.top.duration - 30)
showNextEpisodeButton()
updateCount()