From d73d00a344b4c67bf9a6da64a456cdde1c2e187b Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Wed, 7 Apr 2021 16:50:32 -0400 Subject: [PATCH] Merge pull request #2530 from ssenart/feature/2529-album_shuffle_broken [2529] [RegressionFix] [Dlna] Album shuffle button does not shuffle any more since 10.6.4. (cherry picked from commit 9ee48ee0ca1a257de30d03a4f3118501ab3771b3) Signed-off-by: Joshua M. Boniface --- 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); }); }