Fix potential NullReferenceException
This commit is contained in:
parent
eb4b705167
commit
d18823ced1
|
@ -297,7 +297,7 @@ namespace MediaBrowser.Model.Dlna
|
|||
int? inputAudioChannels = audioStream?.Channels;
|
||||
int? inputAudioBitrate = audioStream?.BitDepth;
|
||||
int? inputAudioSampleRate = audioStream?.SampleRate;
|
||||
int? inputAudioBitDepth = audioStream.BitDepth;
|
||||
int? inputAudioBitDepth = audioStream?.BitDepth;
|
||||
|
||||
if (directPlayMethods.Count() > 0)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user