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/58fb3e9610cdfdc9745d0e4c8aa2f6dea92c2e6b/Emby.Dlna/Common/Argument.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Emby.Dlna/Common/Argument.cs

24 lines
697 B

namespace Emby.Dlna.Common
{
5 years ago
/// <summary>
4 years ago
/// DLNA Query parameter type, used when querying DLNA devices via SOAP.
5 years ago
/// </summary>
public class Argument
{
5 years ago
/// <summary>
/// Gets or sets name of the DLNA argument.
/// </summary>
public string Name { get; set; } = string.Empty;
5 years ago
/// <summary>
/// Gets or sets the direction of the parameter.
/// </summary>
public string Direction { get; set; } = string.Empty;
5 years ago
/// <summary>
/// Gets or sets the related DLNA state variable for this argument.
/// </summary>
public string RelatedStateVariable { get; set; } = string.Empty;
}
}