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

9 lines
116 B

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