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

32 lines
768 B

#nullable disable
#pragma warning disable CS1591
using System;
using MediaBrowser.Model.Session;
6 years ago
namespace MediaBrowser.Model.Net
{
/// <summary>
/// Class WebSocketMessage.
6 years ago
/// </summary>
/// <typeparam name="T">The type of the data.</typeparam>
6 years ago
public class WebSocketMessage<T>
{
/// <summary>
/// Gets or sets the type of the message.
/// </summary>
/// <value>The type of the message.</value>
public SessionMessageType MessageType { get; set; }
public Guid MessageId { get; set; }
6 years ago
public string ServerId { get; set; }
6 years ago
/// <summary>
/// Gets or sets the data.
/// </summary>
/// <value>The data.</value>
public T Data { get; set; }
}
}