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/b15efc84ede3f70bf02bcce194578c333127b94e/DvdLib/Ifo/Program.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/DvdLib/Ifo/Program.cs

17 lines
268 B

#pragma warning disable CS1591
using System.Collections.Generic;
namespace DvdLib.Ifo
{
public class Program
{
public IReadOnlyList<Cell> Cells { get; }
public Program(List<Cell> cells)
{
Cells = cells;
}
}
}