1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

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
commit a20322e7c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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];