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

15 lines
228 B

using System.Collections.Generic;
namespace DvdLib.Ifo
{
public class Program
{
public readonly List<Cell> Cells;
public Program(List<Cell> cells)
{
Cells = cells;
}
}
}