FIX : Pausing playback in Jukebox mode not working #541

master
Rémi Cocula 7 years ago
parent ac9780a41a
commit 560c106d2b
  1. 4
      airsonic-main/src/main/webapp/WEB-INF/jsp/playQueue.jsp

@ -171,7 +171,7 @@
function onStart() {
if (CastPlayer.castSession) {
CastPlayer.playCast();
} else if ($('#audioPlayer')) {
} else if ($('#audioPlayer').get(0)) {
var audioPlayer = $('#audioPlayer');
if(audioPlayer.paused) {
skip(0, audioPlayer.currentTime);
@ -187,7 +187,7 @@
function onStop() {
if (CastPlayer.castSession) {
CastPlayer.pauseCast();
} else if ($('#audioPlayer')) {
} else if ($('#audioPlayer').get(0)) {
$('#audioPlayer').get(0).pause();
} else {
playQueueService.stop(playQueueCallback);

Loading…
Cancel
Save