improve restart code after port change

This commit is contained in:
Luke Pulverenti
2013-05-07 15:07:51 -04:00
parent baa779fb31
commit f8263b8b69
3 changed files with 25 additions and 14 deletions

View File

@@ -201,7 +201,7 @@ namespace MediaBrowser.Common.Implementations
Task.Run(() => ConfigureAutoRunAtStartup());
ConfigurationManager.ConfigurationUpdated += ConfigurationManager_ConfigurationUpdated;
ConfigurationManager.ConfigurationUpdated += OnConfigurationUpdated;
});
}
@@ -459,7 +459,7 @@ namespace MediaBrowser.Common.Implementations
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="EventArgs" /> instance containing the event data.</param>
/// <exception cref="System.NotImplementedException"></exception>
void ConfigurationManager_ConfigurationUpdated(object sender, EventArgs e)
protected virtual void OnConfigurationUpdated(object sender, EventArgs e)
{
ConfigureAutoRunAtStartup();
}