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/26fcb78ae39ffe08885c2f3c8bf97c74ab61602e/MediaBrowser.Common/Plugins/IPluginAssembly.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Common/Plugins/IPluginAssembly.cs

14 lines
277 B

#pragma warning disable CS1591
using System;
namespace MediaBrowser.Common.Plugins
{
public interface IPluginAssembly
{
void SetAttributes(string assemblyFilePath, string dataFolderPath, Version assemblyVersion);
void SetId(Guid assemblyId);
}
}