aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Startup.Common/Browser
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-01-18 23:29:57 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-01-18 23:29:57 -0500
commitde76156391655f726b5655f727e06822398827ca (patch)
treef7ae5e4af806744aaa34136ba47648dd2e412a02 /MediaBrowser.Server.Startup.Common/Browser
parent1316994324b178650e6bb9ddca740d9159d316d1 (diff)
rework hosting options
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/Browser')
-rw-r--r--MediaBrowser.Server.Startup.Common/Browser/BrowserLauncher.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Startup.Common/Browser/BrowserLauncher.cs b/MediaBrowser.Server.Startup.Common/Browser/BrowserLauncher.cs
index bb78cc02f8..617ff4cae2 100644
--- a/MediaBrowser.Server.Startup.Common/Browser/BrowserLauncher.cs
+++ b/MediaBrowser.Server.Startup.Common/Browser/BrowserLauncher.cs
@@ -18,7 +18,7 @@ namespace MediaBrowser.Server.Startup.Common.Browser
/// <param name="logger">The logger.</param>
public static void OpenDashboardPage(string page, IServerApplicationHost appHost, ILogger logger)
{
- var url = "http://localhost:" + appHost.HttpServerPort + "/web/" + page;
+ var url = "http://localhost:" + appHost.HttpPort + "/web/" + page;
OpenUrl(url, logger);
}
@@ -68,7 +68,7 @@ namespace MediaBrowser.Server.Startup.Common.Browser
/// <param name="logger">The logger.</param>
public static void OpenSwagger(IServerApplicationHost appHost, ILogger logger)
{
- OpenUrl("http://localhost:" + appHost.HttpServerPort + "/swagger-ui/index.html", logger);
+ OpenUrl("http://localhost:" + appHost.HttpPort + "/swagger-ui/index.html", logger);
}
/// <summary>