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/f53472584eedbf21dfb43902fedda89aff57ff77/MediaBrowser.Model/IO/IMemoryStreamFactory.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/IO/IMemoryStreamFactory.cs

13 lines
305 B

using System.IO;
namespace MediaBrowser.Model.IO
{
public interface IMemoryStreamFactory
{
MemoryStream CreateNew();
MemoryStream CreateNew(int capacity);
MemoryStream CreateNew(byte[] buffer);
bool TryGetBuffer(MemoryStream stream, out byte[] buffer);
}
}