aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ServerManager/ServerManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-10 22:29:51 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-10 22:29:51 -0500
commit8492225deef59b4548976e162f6fa147abf923be (patch)
tree07d34cac573c69e3a8163026785043ea6a167f9b /Emby.Server.Implementations/ServerManager/ServerManager.cs
parent836e1fdc30f149d3548dc0b529d31ba96de28734 (diff)
update portable projects
Diffstat (limited to 'Emby.Server.Implementations/ServerManager/ServerManager.cs')
-rw-r--r--Emby.Server.Implementations/ServerManager/ServerManager.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Emby.Server.Implementations/ServerManager/ServerManager.cs b/Emby.Server.Implementations/ServerManager/ServerManager.cs
index f660d01ec..f7e4c0ce2 100644
--- a/Emby.Server.Implementations/ServerManager/ServerManager.cs
+++ b/Emby.Server.Implementations/ServerManager/ServerManager.cs
@@ -112,22 +112,22 @@ namespace Emby.Server.Implementations.ServerManager
/// <summary>
/// Starts this instance.
/// </summary>
- public void Start(IEnumerable<string> urlPrefixes, string certificatePath)
+ public void Start(IEnumerable<string> urlPrefixes)
{
- ReloadHttpServer(urlPrefixes, certificatePath);
+ ReloadHttpServer(urlPrefixes);
}
/// <summary>
/// Restarts the Http Server, or starts it if not currently running
/// </summary>
- private void ReloadHttpServer(IEnumerable<string> urlPrefixes, string certificatePath)
+ private void ReloadHttpServer(IEnumerable<string> urlPrefixes)
{
_logger.Info("Loading Http Server");
try
{
HttpServer = _applicationHost.Resolve<IHttpServer>();
- HttpServer.StartServer(urlPrefixes, certificatePath);
+ HttpServer.StartServer(urlPrefixes);
}
catch (Exception ex)
{