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

9 lines
100 B

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