filter audio streams that don't have any channels

pull/702/head
Luke Pulverenti 12 years ago
parent 517006a620
commit 14e28f9eb2

@ -227,6 +227,12 @@ namespace MediaBrowser.Api.Playback
}
}
if (returnFirstIfNoIndex && type == MediaStreamType.Audio)
{
return streams.FirstOrDefault(i => i.Channels.HasValue && i.Channels.Value > 0) ??
streams.FirstOrDefault();
}
// Just return the first one
return returnFirstIfNoIndex ? streams.FirstOrDefault() : null;
}

Loading…
Cancel
Save