mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix season play button not playing specials
This commit is contained in:
parent
9d8f19f76a
commit
07cb21f13f
1 changed files with 1 additions and 1 deletions
|
@ -1957,7 +1957,7 @@ class PlaybackManager {
|
|||
episodesResult.StartIndex = undefined;
|
||||
let seasonStartIndex;
|
||||
for (const [index, e] of episodesResult.Items.entries()) {
|
||||
if (startSeasonId) {
|
||||
if (startSeasonId && items.length != 1) {
|
||||
if (e.SeasonId == startSeasonId) {
|
||||
if (seasonStartIndex === undefined) {
|
||||
seasonStartIndex = index;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue