aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ApplicationHost.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-08-30 14:52:29 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-08-30 14:52:29 -0400
commit0f23c7cfc1372ead03ab9b818e698441d4d53bd3 (patch)
tree3bade7be91c556ec752a7ab8598128fa14c234d8 /Emby.Server.Implementations/ApplicationHost.cs
parent8de80d43ba496535aac89d9ec260d8dc2550169b (diff)
3.2.30.3
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs4
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)
{