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/6d675f1c53be52d05a282227c769b8dcf56aad8b/MediaBrowser.Model/Net/WebSocketState.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Net/WebSocketState.cs

39 lines
760 B

namespace MediaBrowser.Model.Net
{
/// <summary>
/// Enum WebSocketState
/// </summary>
public enum WebSocketState
{
/// <summary>
/// The none
/// </summary>
None,
/// <summary>
/// The connecting
/// </summary>
Connecting,
/// <summary>
/// The open
/// </summary>
Open,
/// <summary>
/// The close sent
/// </summary>
CloseSent,
/// <summary>
/// The close received
/// </summary>
CloseReceived,
/// <summary>
/// The closed
/// </summary>
Closed,
/// <summary>
/// The aborted
/// </summary>
Aborted
}
}