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

27 lines
559 B

#nullable disable
#pragma warning disable CS1591
6 years ago
namespace MediaBrowser.Model.Dlna
{
public class SubtitleStreamInfo
{
public string Url { get; set; }
6 years ago
public string Language { get; set; }
6 years ago
public string Name { get; set; }
6 years ago
public bool IsForced { get; set; }
6 years ago
public string Format { get; set; }
6 years ago
public string DisplayTitle { get; set; }
6 years ago
public int Index { get; set; }
6 years ago
public SubtitleDeliveryMethod DeliveryMethod { get; set; }
6 years ago
public bool IsExternalUrl { get; set; }
}
}