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; }