mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-26 20:16:33 +00:00
update portable projects
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user