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

9 lines
114 B

namespace SocketHttpListener
{
internal enum Fin : byte
{
More = 0x0,
Final = 0x1
}
}