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/a8230c07eaa820a3db0961db9dce1a34d1a3c113/DvdLib/Ifo/CellPositionInfo.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
#pragma warning disable CS1591
|
|
|
|
using System.IO;
|
|
|
|
namespace DvdLib.Ifo
|
|
{
|
|
public class CellPositionInfo
|
|
{
|
|
public readonly ushort VOBId;
|
|
public readonly byte CellId;
|
|
|
|
internal CellPositionInfo(BinaryReader br)
|
|
{
|
|
VOBId = br.ReadUInt16();
|
|
br.ReadByte();
|
|
CellId = br.ReadByte();
|
|
}
|
|
}
|
|
}
|