diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 1bb165eae..9e25df438 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -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 diff --git a/src/plugins/sessionPlayer/plugin.js b/src/plugins/sessionPlayer/plugin.js index 6feef6357..3f9fc1720 100644 --- a/src/plugins/sessionPlayer/plugin.js +++ b/src/plugins/sessionPlayer/plugin.js @@ -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) {