mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2026-01-15 16:33:35 -03:00
Fix queue next / last in session player
This commit is contained in:
@@ -74,6 +74,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
|
||||
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user