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/5eb0006588c8899f0b2ce7900f20e14acfeb977e/MediaBrowser.Controller/Channels/IChannelMediaItem.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Channels/IChannelMediaItem.cs

18 lines
463 B

using MediaBrowser.Model.Channels;
using MediaBrowser.Model.Entities;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Channels
{
public interface IChannelMediaItem : IChannelItem
{
long? RunTimeTicks { get; set; }
string MediaType { get; }
ChannelMediaContentType ContentType { get; set; }
ExtraType ExtraType { get; set; }
List<ChannelMediaInfo> ChannelMediaSources { get; set; }
}
}