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

21 lines
507 B

using MediaBrowser.Controller.Drawing;
using System.IO;
11 years ago
namespace MediaBrowser.Controller.LiveTv
{
public class StreamResponseInfo
11 years ago
{
/// <summary>
/// Gets or sets the stream.
/// </summary>
/// <value>The stream.</value>
public Stream Stream { get; set; }
/// <summary>
/// Gets or sets the type of the MIME.
/// </summary>
/// <value>The type of the MIME.</value>
public ImageFormat Format { get; set; }
11 years ago
}
}