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

44 lines
1.2 KiB

6 years ago
namespace MediaBrowser.Model.ApiClient
{
/// <summary>
/// The server discovery info model.
/// </summary>
6 years ago
public class ServerDiscoveryInfo
{
/// <summary>
/// Initializes a new instance of the <see cref="ServerDiscoveryInfo"/> class.
/// </summary>
/// <param name="address">The server address.</param>
/// <param name="id">The server id.</param>
/// <param name="name">The server name.</param>
/// <param name="endpointAddress">The endpoint address.</param>
public ServerDiscoveryInfo(string address, string id, string name, string? endpointAddress = null)
{
Address = address;
Id = id;
Name = name;
EndpointAddress = endpointAddress;
}
/// <summary>
/// Gets the address.
6 years ago
/// </summary>
public string Address { get; }
6 years ago
/// <summary>
/// Gets the server identifier.
6 years ago
/// </summary>
public string Id { get; }
6 years ago
/// <summary>
/// Gets the name.
6 years ago
/// </summary>
public string Name { get; }
6 years ago
/// <summary>
/// Gets the endpoint address.
6 years ago
/// </summary>
public string? EndpointAddress { get; }
6 years ago
}
}