From 7af79521140aa5b689004d9b7b268c0ff83a04ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Senart?= Date: Sat, 27 Mar 2021 18:05:28 +0100 Subject: [PATCH] [2529] [Regression] Album shuffle button does not shuffle any more since 10.6.4. --- CONTRIBUTORS.md | 1 + src/controllers/music/musicalbums.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 5b2a783de1..229a2acbd7 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -44,6 +44,7 @@ - [Orry Verducci](https://github.com/orryverducci) - [Camc314](https://github.com/camc314) - [danieladov](https://github.com/danieladov) + - [Stephane Senart](https://github.com/ssenart) # Emby Contributors diff --git a/src/controllers/music/musicalbums.js b/src/controllers/music/musicalbums.js index fe885b09a3..031e906edd 100644 --- a/src/controllers/music/musicalbums.js +++ b/src/controllers/music/musicalbums.js @@ -24,7 +24,7 @@ import '../../elements/emby-itemscontainer/emby-itemscontainer'; function shuffle() { ApiClient.getItem(ApiClient.getCurrentUserId(), params.topParentId).then(function (item) { getQuery(); - playbackManager.shuffle(item, null); + playbackManager.shuffle(item); }); }