mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
Merge pull request #2331 from nyanmisaka/master
fix an issue that could not correctly determine 'IsSecondaryAudio' in some cases.
This commit is contained in:
commit
8c520160cc
1 changed files with 1 additions and 4 deletions
|
@ -210,10 +210,7 @@ namespace MediaBrowser.Model.Dto
|
|||
{
|
||||
if (currentStream.Type == MediaStreamType.Audio && currentStream.IsDefault)
|
||||
{
|
||||
if (currentStream.Index != stream.Index)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return currentStream.Index != stream.Index;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue