mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update channel db
This commit is contained in:
parent
abdf95b4d7
commit
519af58a6a
10 changed files with 91 additions and 60 deletions
9
dashboard-ui/cordova/ios/vlcplayer.js
vendored
9
dashboard-ui/cordova/ios/vlcplayer.js
vendored
|
@ -225,7 +225,14 @@
|
|||
return;
|
||||
}
|
||||
|
||||
if (result.state == 4 || result.state == 6) {
|
||||
if (result.type === 'next') {
|
||||
console.log('skip to next audio track'); // typically fired by remote control/lock screen controls
|
||||
MediaPlayer.nextTrack();
|
||||
} else if (result.type === 'previous') {
|
||||
console.log('skip to previous track'); // typically fired by remote/control/lock screen controls
|
||||
MediaPlayer.previousTrack();
|
||||
}
|
||||
else if (result.state == 4 || result.state == 6) {
|
||||
reportEvent('playbackstop', result);
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue