#19 - Auto-Run at startup is not working
This commit is contained in:
parent
2ca20eeefc
commit
b258dcd182
|
@ -225,6 +225,8 @@ namespace MediaBrowser.Common.Implementations
|
||||||
Resolve<ITaskManager>().AddTasks(GetExports<IScheduledTask>(false));
|
Resolve<ITaskManager>().AddTasks(GetExports<IScheduledTask>(false));
|
||||||
|
|
||||||
Task.Run(() => ConfigureAutoRunAtStartup());
|
Task.Run(() => ConfigureAutoRunAtStartup());
|
||||||
|
|
||||||
|
ConfigurationManager.ConfigurationUpdated += ConfigurationManager_ConfigurationUpdated;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -477,6 +479,17 @@ namespace MediaBrowser.Common.Implementations
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected abstract string ProductShortcutPath { get; }
|
protected abstract string ProductShortcutPath { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Handles the ConfigurationUpdated event of the ConfigurationManager control.
|
||||||
|
/// </summary>
|
||||||
|
/// <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)
|
||||||
|
{
|
||||||
|
ConfigureAutoRunAtStartup();
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Configures the auto run at startup.
|
/// Configures the auto run at startup.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user