Skip to content

Commit

Permalink
Merge pull request #132 from anthonylavado/PortFix
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonylavado authored Jun 4, 2024
2 parents d852f3e + f936334 commit c2e30c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jellyfin.Windows.Tray/TrayApplicationContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit c2e30c3

Please sign in to comment.