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/18075dd3e8bbb34a56ec2c6f40cacf0b99398816/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>();
}
}
}