aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs
diff options
context:
space:
mode:
authorZadenRB <zaden.ruggieroboune@gmail.com>2020-04-15 09:29:29 -0600
committerZadenRB <zaden.ruggieroboune@gmail.com>2020-04-15 09:29:29 -0600
commit558b50a094adc82728a52b13862e19bc04783679 (patch)
tree9a5289b2763b4b79d02c3b9e490256744da79094 /Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs
parentad1c880751dda93f1226e3846bb6a344ac58d0b6 (diff)
Remove unnecessary assembly, update casing, enable nullable reference types on notification DTOs.
Diffstat (limited to 'Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs')
-rw-r--r--Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs b/Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs
index b3164e068..dd4f9cd23 100644
--- a/Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs
+++ b/Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs
@@ -71,7 +71,6 @@ namespace Jellyfin.Server.Extensions
// Clear app parts to avoid other assemblies being picked up
.ConfigureApplicationPartManager(a => a.ApplicationParts.Clear())
.AddApplicationPart(typeof(StartupController).Assembly)
- .AddApplicationPart(typeof(NotificationsController).Assembly)
.AddControllersAsServices();
}