mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 22:30:30 +05:30
feat(player): show endscreen on STATE_ENDED
This commit is contained in:
parent
0e8e6278d4
commit
420497907b
@ -934,16 +934,16 @@ class PlayerFragment : Fragment(), OnlinePlayerOptions {
|
||||
}
|
||||
|
||||
// check if video has ended, next video is available and autoplay is enabled.
|
||||
if (
|
||||
playbackState == Player.STATE_ENDED &&
|
||||
!isTransitioning &&
|
||||
PlayerHelper.autoPlayEnabled
|
||||
) {
|
||||
isTransitioning = true
|
||||
if (PlayerHelper.autoPlayCountdown) {
|
||||
showAutoPlayCountdown()
|
||||
if (playbackState == Player.STATE_ENDED) {
|
||||
if (!isTransitioning && PlayerHelper.autoPlayEnabled) {
|
||||
isTransitioning = true
|
||||
if (PlayerHelper.autoPlayCountdown) {
|
||||
showAutoPlayCountdown()
|
||||
} else {
|
||||
playNextVideo()
|
||||
}
|
||||
} else {
|
||||
playNextVideo()
|
||||
binding.player.showController()
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user