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/0ff7f28753ed4848b0d5cdbe615787bcf7f3426b/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs

18 lines
402 B

namespace Jellyfin.Api.Models.ConfigurationDtos;
/// <summary>
/// Media Encoder Path Dto.
/// </summary>
public class MediaEncoderPathDto
{
/// <summary>
/// Gets or sets media encoder path.
/// </summary>
public string Path { get; set; } = null!;
/// <summary>
/// Gets or sets media encoder path type.
/// </summary>
public string PathType { get; set; } = null!;
}