diff options
| author | Phlogi <Phlogi@users.noreply.github.com> | 2019-03-24 12:19:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-24 12:19:10 +0100 |
| commit | 4ffec8ad260fb8829ea220137934596de19a1c1b (patch) | |
| tree | 268805c9d697355b599bfd2d8a3fdcb03eb54ca5 | |
| parent | 69cc5814d85733f5bec9cac03e78caa1324406fe (diff) | |
Fix build, missing changes.
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index 7e236002a..1ea9c599b 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -1498,7 +1498,7 @@ namespace Emby.Server.Implementations { if (ipAddress.AddressFamily == IpAddressFamily.InterNetworkV6) { - return GetLocalApiUrl("[" + ipAddress.Address + "]"); + return GetLocalApiUrlWithPort("[" + ipAddress.Address + "]"); } return GetLocalApiUrlWithPort(ipAddress.Address); @@ -1521,7 +1521,7 @@ namespace Emby.Server.Implementations { if (ipAddress.AddressFamily == IpAddressFamily.InterNetworkV6) { - return GetLocalApiUrl("[" + ipAddress.Address + "]"); + return GetWanApiUrlWithPort("[" + ipAddress.Address + "]"); } return GetWanApiUrlWithPort(ipAddress.Address); |
