From 663507b3f80074898a43bbab764529bfc9d432dc Mon Sep 17 00:00:00 2001 From: Manish Date: Sun, 17 Oct 2021 11:06:26 +0530 Subject: [PATCH] fix: player status when play at start --- plugins/shortcuts/back.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/shortcuts/back.js b/plugins/shortcuts/back.js index 9bb01d07..0184ffb3 100644 --- a/plugins/shortcuts/back.js +++ b/plugins/shortcuts/back.js @@ -36,6 +36,9 @@ function registerShortcuts(win, options) { 'xesam:title': songInfo.title, 'xesam:artist': songInfo.artist }; + if (!songInfo.isPaused) { + player.playbackStatus = "Playing" + } } } )