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/99833681c318fe83c911023f60a28e6c00302d74/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
464 B

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