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/f3029428cd118b34d73706fdd85cc3918b312a86/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;
}
}
}