mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-02 14:56:31 +01:00
fix handling of bare nfo's
This commit is contained in:
@@ -341,7 +341,11 @@ namespace MediaBrowser.Model.Dlna
|
||||
MediaStream subtitleStream = playlistItem.SubtitleStreamIndex.HasValue ? item.GetMediaStream(MediaStreamType.Subtitle, playlistItem.SubtitleStreamIndex.Value) : null;
|
||||
|
||||
MediaStream audioStream = item.GetDefaultAudioStream(options.AudioStreamIndex ?? item.DefaultAudioStreamIndex);
|
||||
int? audioStreamIndex = audioStream == null ? (int?)null : audioStream.Index;
|
||||
int? audioStreamIndex = null;
|
||||
if (audioStream != null)
|
||||
{
|
||||
audioStreamIndex = audioStream.Index;
|
||||
}
|
||||
|
||||
MediaStream videoStream = item.VideoStream;
|
||||
|
||||
|
||||
@@ -150,7 +150,12 @@ namespace MediaBrowser.Model.Dto
|
||||
}
|
||||
}
|
||||
|
||||
return numStreams == 0 ? (int?)null : numMatches;
|
||||
if (numStreams == 0)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
return numMatches;
|
||||
}
|
||||
|
||||
public bool? IsSecondaryAudio(MediaStream stream)
|
||||
|
||||
Reference in New Issue
Block a user