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

9 lines
102 B

namespace SocketHttpListener
{
internal enum Mask : byte
{
Unmask = 0x0,
Mask = 0x1
}
}