From 4257a401d5b4cbf770fb4df93ec491b1f267c95a Mon Sep 17 00:00:00 2001 From: Sky High Date: Wed, 25 Oct 2023 23:05:30 +0200 Subject: [PATCH] Update src/components/remotecontrol/remotecontrol.js Co-authored-by: Bill Thornton --- src/components/remotecontrol/remotecontrol.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/remotecontrol/remotecontrol.js b/src/components/remotecontrol/remotecontrol.js index 3714ef524..343a5f517 100644 --- a/src/components/remotecontrol/remotecontrol.js +++ b/src/components/remotecontrol/remotecontrol.js @@ -773,7 +773,7 @@ export default function () { context.querySelector('.btnPreviousTrack').addEventListener('click', function (e) { if (currentPlayer) { - if ( playbackManager.isPlayingAudio(currentPlayer) ) { + if (playbackManager.isPlayingAudio(currentPlayer)) { // Cancel this event if doubleclick is fired. The actual previousTrack will be processed by the 'dblclick' event if (e.detail > 1 ) { return;