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/314b84ae9ef5a692144b0a3a178ddcbd393c9fb9/MediaBrowser.Model/Reflection/IAssemblyInfo.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Reflection/IAssemblyInfo.cs

15 lines
319 B

using System;
using System.IO;
using System.Reflection;
namespace MediaBrowser.Model.Reflection
{
public interface IAssemblyInfo
{
Stream GetManifestResourceStream(Type type, string resource);
string[] GetManifestResourceNames(Type type);
Assembly[] GetCurrentAssemblies();
}
}