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

Merge pull request from YouKnowBlom/fix-safari-hls

Fix incorrect HLS master playlist fields
pull/3248/head^2
Bond-009 5 years ago committed by GitHub
commit 5e056beaae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -872,9 +872,8 @@ namespace MediaBrowser.Api.Playback.Hls
if (framerate.HasValue)
{
builder.Append(",FRAME-RATE=\"")
.Append(framerate.Value)
.Append('"');
builder.Append(",FRAME-RATE=")
.Append(framerate.Value);
}
}
@ -888,11 +887,10 @@ namespace MediaBrowser.Api.Playback.Hls
{
if (state.OutputWidth.HasValue && state.OutputHeight.HasValue)
{
builder.Append(",RESOLUTION=\"")
builder.Append(",RESOLUTION=")
.Append(state.OutputWidth.GetValueOrDefault())
.Append('x')
.Append(state.OutputHeight.GetValueOrDefault())
.Append('"');
.Append(state.OutputHeight.GetValueOrDefault());
}
}

Loading…
Cancel
Save