diff --git a/components/video/VideoPlayerView.brs b/components/video/VideoPlayerView.brs index b4f47948..bafcf185 100644 --- a/components/video/VideoPlayerView.brs +++ b/components/video/VideoPlayerView.brs @@ -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()