update recording screens

This commit is contained in:
Luke Pulverenti
2016-09-21 13:07:18 -04:00
parent 61ee765de9
commit d94598a75e
6 changed files with 56 additions and 30 deletions

View File

@@ -870,6 +870,23 @@ namespace MediaBrowser.Server.Startup.Common
{
CertificatePath = GetCertificatePath(true);
try
{
ServerManager.Start(GetUrlPrefixes(), CertificatePath);
return;
}
catch (Exception ex)
{
Logger.ErrorException("Error starting http server", ex);
if (HttpPort == 8096)
{
throw;
}
}
HttpPort = 8096;
try
{
ServerManager.Start(GetUrlPrefixes(), CertificatePath);