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/Jellyfin.Api/Formatters/PascalCaseJsonProfileFormatter.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Jellyfin.Api/Formatters/PascalCaseJsonProfileFormat...

24 lines
824 B

using System.Net.Mime;
using Jellyfin.Extensions.Json;
5 years ago
using Microsoft.AspNetCore.Mvc.Formatters;
using Microsoft.Net.Http.Headers;
namespace Jellyfin.Api.Formatters;
/// <summary>
/// Pascal Case Json Profile Formatter.
/// </summary>
public class PascalCaseJsonProfileFormatter : SystemTextJsonOutputFormatter
5 years ago
{
/// <summary>
/// Initializes a new instance of the <see cref="PascalCaseJsonProfileFormatter"/> class.
5 years ago
/// </summary>
public PascalCaseJsonProfileFormatter() : base(JsonDefaults.PascalCaseOptions)
5 years ago
{
SupportedMediaTypes.Clear();
// Add application/json for default formatter
SupportedMediaTypes.Add(MediaTypeHeaderValue.Parse(MediaTypeNames.Application.Json));
SupportedMediaTypes.Add(MediaTypeHeaderValue.Parse(JsonDefaults.PascalCaseMediaType));
5 years ago
}
}