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/b3b98a5cc8d49174dda4d4784a7e9297b5961f68/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)
{
5 years ago
_ = BenchmarkRunner.Run<HexEncodeBenches>();
_ = BenchmarkRunner.Run<HexDecodeBenches>();
}
}
}