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/f62671dc3fc4c5edf76887120949ef9ce604dd01/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDt...

22 lines
551 B

namespace Jellyfin.Api.Models.ClientLogDtos;
/// <summary>
/// Client log document response dto.
/// </summary>
public class ClientLogDocumentResponseDto
3 years ago
{
/// <summary>
/// Initializes a new instance of the <see cref="ClientLogDocumentResponseDto"/> class.
3 years ago
/// </summary>
/// <param name="fileName">The file name.</param>
public ClientLogDocumentResponseDto(string fileName)
3 years ago
{
FileName = fileName;
3 years ago
}
/// <summary>
/// Gets the resulting filename.
/// </summary>
public string FileName { get; }
3 years ago
}