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

Update MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs

Co-Authored-By: cvium <cvium@users.noreply.github.com>
pull/1010/head
Bond-009 6 years ago committed by GitHub
parent 8c609bc9ce
commit e4c5d51860
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -366,7 +366,7 @@ namespace MediaBrowser.Api.Playback.Progressive
// Headers only
if (isHeadRequest)
{
return ResultFactory.GetResult(null, new byte[] { }, contentType, responseHeaders);
return ResultFactory.GetResult(null, Array.Empty<byte>(), contentType, responseHeaders);
}
var transcodingLock = ApiEntryPoint.Instance.GetTranscodingLock(outputPath);

Loading…
Cancel
Save