From 2e1b8ea62d92263d087cbc8996886cdecc4b1705 Mon Sep 17 00:00:00 2001 From: Patrick Barron Date: Wed, 11 Oct 2023 11:37:28 -0400 Subject: [PATCH] Remove DlnaEntryPoint.Enabled --- Emby.Dlna/Main/DlnaEntryPoint.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Emby.Dlna/Main/DlnaEntryPoint.cs b/Emby.Dlna/Main/DlnaEntryPoint.cs index ea996a4424..06c39ecca3 100644 --- a/Emby.Dlna/Main/DlnaEntryPoint.cs +++ b/Emby.Dlna/Main/DlnaEntryPoint.cs @@ -103,11 +103,6 @@ namespace Emby.Dlna.Main } } - /// - /// Gets a value indicating whether the dlna server is enabled. - /// - public static bool Enabled { get; private set; } - public async Task RunAsync() { await ((DlnaManager)_dlnaManager).InitProfilesAsync().ConfigureAwait(false); @@ -134,8 +129,6 @@ namespace Emby.Dlna.Main private void ReloadComponents() { var options = _config.GetDlnaConfiguration(); - Enabled = options.EnableServer; - StartSsdpHandler(); if (options.EnableServer)