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/8f11917e84ed3b09bec10cf46c768dfc377f85d1/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>();
}
}
}