diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2019-03-25 10:17:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-25 10:17:53 +0100 |
| commit | 89f2dfd78a5c73c9d9d5cc832ff0427fa732ae3e (patch) | |
| tree | f7e5fd8d3c255fc2e70486786cb30fe74ac99953 /Emby.Server.Implementations | |
| parent | 2c4c56d6d638ee22617c000719aabcef5b949d32 (diff) | |
Update Emby.Server.Implementations/ApplicationHost.cs
Co-Authored-By: Phlogi <Phlogi@users.noreply.github.com>
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index 410f5becd..8ff17f35c 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -1430,7 +1430,7 @@ namespace Emby.Server.Implementations public async Task<PublicSystemInfo> GetPublicSystemInfo(CancellationToken cancellationToken) { var localAddress = await GetLocalApiUrl(cancellationToken).ConfigureAwait(false); - var wanAddress = System.String.Empty; + var wanAddress = string.Empty; if (string.IsNullOrEmpty(ServerConfigurationManager.Configuration.WanDdns)){ wanAddress = await GetWanApiUrl(cancellationToken).ConfigureAwait(false); |
