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

Code cleanup

Restoring "Play All" functionality
This commit is contained in:
MrK 2023-09-20 23:10:09 +01:00
parent af61ae047c
commit ef8d92309b
2 changed files with 10 additions and 2 deletions

View file

@ -724,8 +724,13 @@ class ItemsView {
const currentItem = self.currentItem;
if (currentItem && !self.hasFilters) {
const values = self.getSortValues();
playbackManager.play({
items: [currentItem],
queryOptions: {
SortBy: values.sortBy,
SortOrder: values.sortOrder
},
autoplay: true
});
} else {