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/ea61c6458f09018965fb84f4e29f527059400700/Emby.Server.Implementations/Migrations/IVersionMigration.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Emby.Server.Implementations/Migrations/IVersionMigration.cs

10 lines
158 B

using System.Threading.Tasks;
namespace Emby.Server.Implementations.Migrations
{
public interface IVersionMigration
{
Task Run();
}
}