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

Fix+enhance playback sequence of episodes in a series/season

- Adds an option to a season's menu to `Play All From Here` (default
  behavior is to play only the specific season)
- Playback will start on the first unplayed episode, or at the beginning
  of the season
- After starting playback, navigation to prior episodes is immediately possible
  using the previous episode navigation button
- Fix previous button not navigating to previous episode when starting
  on a non-first episode (ex. episode 1 when starting playback on episode 2)
This commit is contained in:
Andrew Rabert 2024-05-01 11:46:14 -04:00
parent b12d92dffd
commit 46c749c547
2 changed files with 35 additions and 35 deletions

View file

@ -116,7 +116,7 @@ function showContextMenu(card, options) {
item: item,
play: true,
queue: true,
playAllFromHere: !item.IsFolder,
playAllFromHere: item.Type === 'Season' || !item.IsFolder,
queueAllFromHere: !item.IsFolder,
playlistId: playlistId,
collectionId: collectionId,