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

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 9ee48ee0ca)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
Bill Thornton 2021-04-07 16:50:32 -04:00 committed by Joshua M. Boniface
parent d91d3120e9
commit d73d00a344
2 changed files with 2 additions and 1 deletions

View file

@ -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

View file

@ -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);
});
}