Merge pull request #2331 from nyanmisaka/master

fix an issue that could not correctly determine 'IsSecondaryAudio' in some cases.
This commit is contained in:
Vasily 2020-01-27 15:51:50 +03:00 committed by GitHub
commit 8c520160cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}
}