From b4b199472941469651be002ed3de50c094e20917 Mon Sep 17 00:00:00 2001 From: Claus Vium Date: Fri, 2 Apr 2021 20:49:19 +0200 Subject: [PATCH] fix --- src/scripts/inputManager.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/scripts/inputManager.js b/src/scripts/inputManager.js index 55427ece74..bd1e29a42b 100644 --- a/src/scripts/inputManager.js +++ b/src/scripts/inputManager.js @@ -236,7 +236,9 @@ import { appHost } from '../components/apphost'; 'repeatone': () => { playbackManager.setRepeatMode('RepeatOne'); }, - 'unknown': () => {} + 'unknown': () => { + // This is the command given by 'notify', it's a no-op + } })[command]; const action = keyActions(commandName);