From 56d57de98047dfb81678a9acf54bc76f81ffca14 Mon Sep 17 00:00:00 2001 From: flb Date: Mon, 26 Jan 2026 11:47:37 +0100 Subject: [PATCH] fix: add missing Rewind & FastForward PlayState commands handling --- src/scripts/serverNotifications.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/scripts/serverNotifications.js b/src/scripts/serverNotifications.js index 0f9353dcf..d3585c51f 100644 --- a/src/scripts/serverNotifications.js +++ b/src/scripts/serverNotifications.js @@ -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(); }