Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/f8c4f7c63e3adb98dc1ad30aa01c3dd3d5c1e76c/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;
}
}
}