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/0f1b043dad5fdbd82978dfb3af17a4725f507a1c/SocketHttpListener/ByteOrder.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/SocketHttpListener/ByteOrder.cs

18 lines
363 B

namespace SocketHttpListener
{
/// <summary>
/// Contains the values that indicate whether the byte order is a Little-endian or Big-endian.
/// </summary>
public enum ByteOrder : byte
{
/// <summary>
/// Indicates a Little-endian.
/// </summary>
Little,
/// <summary>
/// Indicates a Big-endian.
/// </summary>
Big
}
}