From a1a155168070f049f64ef33da4b8b29c18db4769 Mon Sep 17 00:00:00 2001 From: cvium Date: Wed, 23 Aug 2023 09:08:22 +0200 Subject: [PATCH] remove batteries init --- Jellyfin.Server/Helpers/StartupHelpers.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Jellyfin.Server/Helpers/StartupHelpers.cs b/Jellyfin.Server/Helpers/StartupHelpers.cs index fda6e54656..95b2504063 100644 --- a/Jellyfin.Server/Helpers/StartupHelpers.cs +++ b/Jellyfin.Server/Helpers/StartupHelpers.cs @@ -297,7 +297,5 @@ public static class StartupHelpers // Disable the "Expect: 100-Continue" header by default // http://stackoverflow.com/questions/566437/http-post-returns-the-error-417-expectation-failed-c ServicePointManager.Expect100Continue = false; - - Batteries_V2.Init(); } }