Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/d18823ced179b08b2cf50d84c85d3ee0b635a3ce You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix potential NullReferenceException

pull/872/head
William Lees 6 years ago
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…
Cancel
Save