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

Merge pull request #5059 from rasmuslos/sessionQueueFix

Fix queue next / last in session player
This commit is contained in:
Bill Thornton 2024-01-12 10:24:06 -05:00 committed by GitHub
commit 54e186e752
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -77,6 +77,7 @@
- [Grady Hallenbeck](https://github.com/grhallenbeck)
- [DinuD](https://github.com/DinuD)
- [Kevin Tan (Valius)](https://github.com/valius)
- [Rasmus Krämer](https://github.com/rasmuslos)
## Emby Contributors

View file

@ -284,11 +284,11 @@ class SessionPlayer {
}
queue(options) {
sendPlayCommand(getCurrentApiClient(this), options, 'PlayNext');
sendPlayCommand(getCurrentApiClient(this), options, 'PlayLast');
}
queueNext(options) {
sendPlayCommand(getCurrentApiClient(this), options, 'PlayLast');
sendPlayCommand(getCurrentApiClient(this), options, 'PlayNext');
}
canPlayMediaType(mediaType) {