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/fdb0c3a1dff0c1e9c3c22a3be688b97ea0bd7a6d/MediaBrowser.Model/Dlna/VideoOptions.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Dlna/VideoOptions.cs

12 lines
265 B

namespace MediaBrowser.Model.Dlna
6 years ago
{
/// <summary>
/// Class VideoOptions.
/// </summary>
public class VideoOptions : AudioOptions
{
public int? AudioStreamIndex { get; set; }
public int? SubtitleStreamIndex { get; set; }
}
}