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/41568ff2a409a8406fccb964e5b740cbc0c1c6ff/MediaBrowser.Controller/LiveTv/ILiveTvItem.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/LiveTv/ILiveTvItem.cs

11 lines
224 B

using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.LiveTv
{
public interface ILiveTvItem : IHasId
{
string ServiceName { get; set; }
10 years ago
string ExternalId { get; set; }
}
}