mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 22:30:30 +05:30
fix: restoring playback positions via notification controls
This commit is contained in:
parent
1c84cd744c
commit
ac5fb5fbb4
@ -813,15 +813,14 @@ class PlayerFragment : Fragment(), OnlinePlayerOptions {
|
||||
saveWatchPosition()
|
||||
|
||||
// save the id of the next stream as videoId and load the next video
|
||||
if (nextVideoId != null) {
|
||||
videoId = nextVideoId
|
||||
if (nextVideoId == null) return
|
||||
|
||||
// play the next video
|
||||
playVideo()
|
||||
|
||||
// close comment bottom-sheet for next video
|
||||
commentsViewModel.commentsSheetDismiss?.invoke()
|
||||
}
|
||||
isTransitioning = true
|
||||
videoId = nextVideoId
|
||||
// start to play the next video
|
||||
playVideo()
|
||||
// close comment bottom sheet for next video
|
||||
commentsViewModel.commentsSheetDismiss?.invoke()
|
||||
}
|
||||
|
||||
private fun prepareExoPlayerView() {
|
||||
|
Loading…
Reference in New Issue
Block a user