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/bc113bf095b03cb1ecef06c8675a888792b33d7d/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);
}
}