Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/2610bb2cc189e9b330421895c988ac6cbb518d36?style=split&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from MrTimscampi/attachment-baseurl

Add baseURL to attachments API url
pull/2535/head
Joshua M. Boniface 5 years ago committed by GitHub
commit 2610bb2cc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -573,7 +573,8 @@ namespace MediaBrowser.Api.Playback
{ {
attachment.DeliveryUrl = string.Format( attachment.DeliveryUrl = string.Format(
CultureInfo.InvariantCulture, CultureInfo.InvariantCulture,
"/Videos/{0}/{1}/Attachments/{2}", "{0}/Videos/{1}/{2}/Attachments/{3}",
ServerConfigurationManager.Configuration.BaseUrl,
item.Id, item.Id,
mediaSource.Id, mediaSource.Id,
attachment.Index); attachment.Index);

Loading…
Cancel
Save