We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9932fd7 commit e7e8738Copy full SHA for e7e8738
plugins/shortcuts/mpris.js
@@ -83,7 +83,7 @@ function registerMPRIS(win) {
83
}
84
});
85
player.on("playpause", () => {
86
- player.playbackStatus = player.playbackStatus == 'Playing' ? "Paused" : "Playing";
+ player.playbackStatus = player.playbackStatus === 'Playing' ? "Paused" : "Playing";
87
playPause();
88
89
0 commit comments