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

15 lines
308 B

using System.Collections.Generic;
namespace MediaBrowser.Model.MediaInfo
{
public class SubtitleTrackInfo
{
public List<SubtitleTrackEvent> TrackEvents { get; set; }
public SubtitleTrackInfo()
{
TrackEvents = new List<SubtitleTrackEvent>();
}
}
}