From f9363348c4264abd59b5b154ac61e9dc1d54d37a Mon Sep 17 00:00:00 2001 From: Anthony Lavado Date: Tue, 4 Jun 2024 17:59:54 -0400 Subject: [PATCH] Use correct Http node name Use the correct node name for the port, as autocorrect had capitalized it when I was working on it. --- Jellyfin.Windows.Tray/TrayApplicationContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jellyfin.Windows.Tray/TrayApplicationContext.cs b/Jellyfin.Windows.Tray/TrayApplicationContext.cs index ec17a1e..b8a8617 100644 --- a/Jellyfin.Windows.Tray/TrayApplicationContext.cs +++ b/Jellyfin.Windows.Tray/TrayApplicationContext.cs @@ -172,7 +172,7 @@ private void LoadJellyfinConfig() XPathNavigator networkReader = networkXml.CreateNavigator(); _networkAddress = networkReader.SelectSingleNode("/NetworkConfiguration/LocalNetworkAddresses").Value; - _port = networkReader.SelectSingleNode("/NetworkConfiguration/InternalHTTPPort")?.Value; + _port = networkReader.SelectSingleNode("/NetworkConfiguration/InternalHttpPort")?.Value; _baseUrl = networkReader.SelectSingleNode("/NetworkConfiguration/BaseUrl")?.Value; }