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/debd9eb8ce3ee2731ee71f508b4260f654b12d02/MediaBrowser.Controller/Library/ILiveStream.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Library/ILiveStream.cs

34 lines
645 B

#nullable disable
#pragma warning disable CA1711, CS1591
using System;
using System.IO;
using System.Threading;
6 years ago
using System.Threading.Tasks;
using MediaBrowser.Model.Dto;
namespace MediaBrowser.Controller.Library
{
public interface ILiveStream : IDisposable
6 years ago
{
int ConsumerCount { get; set; }
6 years ago
string OriginalStreamId { get; set; }
6 years ago
string TunerHostId { get; }
6 years ago
bool EnableStreamSharing { get; }
6 years ago
MediaSourceInfo MediaSource { get; set; }
6 years ago
string UniqueId { get; }
Task Open(CancellationToken openCancellationToken);
Task Close();
Stream GetStream();
6 years ago
}
}