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/f4d61ddcc69b2577c456390a87c78726464f630b/MediaBrowser.Model/ApiClient/ConnectionState.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/ApiClient/ConnectionState.cs

13 lines
270 B

namespace MediaBrowser.Model.ApiClient
{
public enum ConnectionState
{
Unavailable = 1,
ServerSignIn = 2,
SignedIn = 3,
ServerSelection = 4,
ConnectSignIn = 5,
OfflineSignIn = 6,
OfflineSignedIn = 7
}
}