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/2702dca8b6e7f31f64e644ec119edc09cb746bb1/Emby.Server.Implementations/SocketSharp/HttpFile.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

19 lines
391 B

using System.IO;
using MediaBrowser.Model.Services;
namespace Emby.Server.Implementations.SocketSharp
{
public class HttpFile : IHttpFile
{
public string Name { get; set; }
public string FileName { get; set; }
public long ContentLength { get; set; }
public string ContentType { get; set; }
public Stream InputStream { get; set; }
}
}