aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna
diff options
context:
space:
mode:
authorcvium <clausvium@gmail.com>2021-11-24 13:42:14 +0100
committercvium <clausvium@gmail.com>2021-11-24 13:42:14 +0100
commit0485ff189948e4c0b6532e835b9f6740e89d0d40 (patch)
tree870f1b925394d78047262966fcb20dcb4ab64c69 /Emby.Dlna
parent69df004b9f62cb65986607d659fde0dcc74004ab (diff)
Create a store key constant for network
Diffstat (limited to 'Emby.Dlna')
-rw-r--r--Emby.Dlna/Main/DlnaEntryPoint.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Dlna/Main/DlnaEntryPoint.cs b/Emby.Dlna/Main/DlnaEntryPoint.cs
index f35d90f21..08f639d93 100644
--- a/Emby.Dlna/Main/DlnaEntryPoint.cs
+++ b/Emby.Dlna/Main/DlnaEntryPoint.cs
@@ -124,7 +124,7 @@ namespace Emby.Dlna.Main
config);
Current = this;
- var netConfig = config.GetConfiguration<NetworkConfiguration>("network");
+ var netConfig = config.GetConfiguration<NetworkConfiguration>(NetworkConfigurationStore.StoreKey);
_disabled = appHost.ListenWithHttps && netConfig.RequireHttps;
if (_disabled && _config.GetDlnaConfiguration().EnableServer)