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/89b1eba249b675f8c3b2f1a29bd2b859ad78cea5/MediaBrowser.Controller/Subtitles/SubtitleResponse.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Subtitles/SubtitleResponse.cs

22 lines
393 B

#nullable disable
#pragma warning disable CS1591
using System.IO;
6 years ago
namespace MediaBrowser.Controller.Subtitles
{
public class SubtitleResponse
{
public string Language { get; set; }
6 years ago
public string Format { get; set; }
6 years ago
public bool IsForced { get; set; }
public bool IsHearingImpaired { get; set; }
6 years ago
public Stream Stream { get; set; }
}
}