Fix casing of JSON in Jellyfin API. Currently only affects startup wizard.
This commit is contained in:
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…
Reference in New Issue
Block a user