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/2a2630098b09b5bb5791e439bc9a7902c6dffa62/MediaBrowser.Model/MediaInfo/SubtitleFormat.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/MediaInfo/SubtitleFormat.cs

16 lines
415 B

#pragma warning disable CS1591
namespace MediaBrowser.Model.MediaInfo
6 years ago
{
public static class SubtitleFormat
6 years ago
{
public const string SRT = "srt";
public const string SSA = "ssa";
public const string ASS = "ass";
public const string VTT = "vtt";
public const string SUB = "sub";
public const string SMI = "smi";
public const string TTML = "ttml";
}
}