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/694082ac01334d37be18ef05c3ec6684f9b7692b/MediaBrowser.Model/IO/IMemoryStreamFactory.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|