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/3d819b74bd3c00458b9475ab27989372d2d51ed6/MediaBrowser.Controller/Net/WebSocketMessageInfo.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Net/WebSocketMessageInfo.cs

19 lines
462 B

#nullable disable
using MediaBrowser.Controller.Net.WebSocketMessages;
6 years ago
namespace MediaBrowser.Controller.Net
{
/// <summary>
/// Class WebSocketMessageInfo.
6 years ago
/// </summary>
public class WebSocketMessageInfo : InboundWebSocketMessage<string>
6 years ago
{
/// <summary>
/// Gets or sets the connection.
/// </summary>
/// <value>The connection.</value>
public IWebSocketConnection Connection { get; set; }
}
}