Fix casing of JSON in Jellyfin API. Currently only affects startup wizard.

pull/2848/head
ZadenRB 4 years ago
parent 2be6550db4
commit 5a658cf260

@ -6,6 +6,7 @@ using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Library;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
namespace Jellyfin.Api.Controllers
{

@ -71,6 +71,10 @@ namespace Jellyfin.Server.Extensions
// Clear app parts to avoid other assemblies being picked up
.ConfigureApplicationPartManager(a => a.ApplicationParts.Clear())
.AddApplicationPart(typeof(StartupController).Assembly)
.AddJsonOptions(options =>
{
options.JsonSerializerOptions.PropertyNamingPolicy = null;
})
.AddControllersAsServices();
}

Loading…
Cancel
Save