aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Networking/Manager/NetworkManager.cs
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2021-12-11 12:04:58 -0700
committerGitHub <noreply@github.com>2021-12-11 12:04:58 -0700
commit4d1b8246513b352d65d4db6afcb97ae1e984c760 (patch)
treecd7a3fe42e3ace4cfe0aa3268f5dcee29f855e43 /Jellyfin.Networking/Manager/NetworkManager.cs
parentfbc79cb4cee4fec27fd440127469f6dcdc1bc7c2 (diff)
parenta87b87825dac31f3739a8dc0254548c3e81a241e (diff)
Merge pull request #6902 from cvium/migrate_networkconfig
Migrate network configuration safely
Diffstat (limited to 'Jellyfin.Networking/Manager/NetworkManager.cs')
-rw-r--r--Jellyfin.Networking/Manager/NetworkManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Networking/Manager/NetworkManager.cs b/Jellyfin.Networking/Manager/NetworkManager.cs
index cf002dc73..58b30ad2d 100644
--- a/Jellyfin.Networking/Manager/NetworkManager.cs
+++ b/Jellyfin.Networking/Manager/NetworkManager.cs
@@ -727,7 +727,7 @@ namespace Jellyfin.Networking.Manager
private void ConfigurationUpdated(object? sender, ConfigurationUpdateEventArgs evt)
{
- if (evt.Key.Equals("network", StringComparison.Ordinal))
+ if (evt.Key.Equals(NetworkConfigurationStore.StoreKey, StringComparison.Ordinal))
{
UpdateSettings((NetworkConfiguration)evt.NewConfiguration);
}