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