Merge pull request #2552 from jellyfin/add-unknown-command

add 'unknown' as an input command
This commit is contained in:
Bill Thornton
2021-04-07 17:09:45 -04:00
committed by GitHub

View File

@@ -235,6 +235,9 @@ import { appHost } from '../components/apphost';
},
'repeatone': () => {
playbackManager.setRepeatMode('RepeatOne');
},
'unknown': () => {
// This is the command given by 'notify', it's a no-op
}
})[command];