diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-08-30 14:53:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-30 14:53:37 -0400 |
| commit | 00cb873164fb1619a2291e79bb53f3edcedcd731 (patch) | |
| tree | 3bade7be91c556ec752a7ab8598128fa14c234d8 /Emby.Server.Implementations/ApplicationHost.cs | |
| parent | 40ba8891c9ee66bb8e7dd9e8784acecd002c9c5d (diff) | |
| parent | 0f23c7cfc1372ead03ab9b818e698441d4d53bd3 (diff) | |
Merge pull request #2855 from MediaBrowser/dev
Dev
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
| -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 345445102..a9d3247e6 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -1614,7 +1614,7 @@ namespace Emby.Server.Implementations { try { - ServerManager.Start(GetUrlPrefixes()); + ServerManager.Start(GetUrlPrefixes().ToArray()); return; } catch (Exception ex) @@ -1631,7 +1631,7 @@ namespace Emby.Server.Implementations try { - ServerManager.Start(GetUrlPrefixes()); + ServerManager.Start(GetUrlPrefixes().ToArray()); } catch (Exception ex) { |
