Fix:Open playback session on init #743

This commit is contained in:
advplyr 2022-06-18 13:11:15 -05:00
parent fd13607d89
commit 19f020e7a6
3 changed files with 5 additions and 9 deletions

View file

@ -177,12 +177,13 @@ export default class PlayerHandler {
}
prepareOpenSession(session, playbackRate) { // Session opened on init socket
if (!this.player) this.switchPlayer() // Must set player first for open sessions
this.libraryItem = session.libraryItem
this.isVideo = session.libraryItem.mediaType === 'video'
this.playWhenReady = false
this.initialPlaybackRate = playbackRate
if (!this.player) this.switchPlayer()
this.prepareSession(session)
}