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.
This commit is contained in:
Bill Thornton
2021-04-07 16:50:32 -04:00
committed by GitHub
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);
});
}