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/48ea7dc6046392356347a433a436cfd04b5e3f29/benches/Jellyfin.Common.Benches/Program.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/benches/Jellyfin.Common.Benches/Program.cs

15 lines
312 B

using System;
using BenchmarkDotNet.Running;
namespace Jellyfin.Common.Benches
{
public static class Program
{
public static void Main(string[] args)
{
_ = BenchmarkRunner.Run<HexEncodeBenches>();
_ = BenchmarkRunner.Run<HexDecodeBenches>();
}
}
}