mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
fix an issue about determining 'IsSecondaryAudio'
fix an issue that could not correctly determine 'IsSecondaryAudio' in some cases.
This commit is contained in:
parent
2ce16d4bb5
commit
48e9c004b4
1 changed files with 1 additions and 4 deletions
|
@ -209,10 +209,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