aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs
diff options
context:
space:
mode:
authorZadenRB <zaden.ruggieroboune@gmail.com>2020-04-15 00:24:15 -0600
committerZadenRB <zaden.ruggieroboune@gmail.com>2020-04-15 00:24:15 -0600
commit72862d7b46a1656f7d798cf13e66f3cd6b820866 (patch)
treeef85363a25f728fa51a7e3571b7d051b8951ead3 /Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs
parent16a66dc89c78180f8abb8a65c454b39b3b253a55 (diff)
Lowercase actual parameters in code and remove whitespace to comply with StyleCopAnalyzers
Diffstat (limited to 'Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs')
-rw-r--r--Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs b/Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs
index 8e124d070..0347511e6 100644
--- a/Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs
+++ b/Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs
@@ -71,7 +71,7 @@ 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 =>
+ .AddJsonOptions(options =>
{
options.JsonSerializerOptions.PropertyNamingPolicy = null;
})