Merge pull request #7527 from HamletDuFromage/master

fix: add missing Rewind & FastForward PlayState commands handling
This commit is contained in:
Niels van Velzen
2026-01-27 11:32:28 +01:00
committed by GitHub
+4
View File
@@ -176,6 +176,10 @@ function onMessageReceived(e, msg) {
inputManager.handleCommand('next');
} else if (msg.Data.Command === 'PreviousTrack') {
inputManager.handleCommand('previous');
} else if (msg.Data.Command === 'Rewind') {
inputManager.handleCommand('rewind');
} else if (msg.Data.Command === 'FastForward') {
inputManager.handleCommand('fastforward');
} else {
notifyApp();
}