Updates to delete any existing archived configs during update process to prevent name conflicts

This commit is contained in:
Neil Dorin
2019-03-15 12:16:01 -06:00
parent 90bbd65fdc
commit 6235b44d89
3 changed files with 17 additions and 4 deletions

View File

@@ -40,8 +40,11 @@ namespace PepperDash.Essentials.AppServer.Messengers
/// <param name="e"></param>
void ProgramInfoChanged(object sender, ProgramInfoEventArgs e)
{
Debug.Console(1, "Posting Status Message: {0}", e.ProgramInfo.ToString());
PostStatusMessage(e.ProgramInfo);
if (e.ProgramInfo != null)
{
//Debug.Console(1, "Posting Status Message: {0}", e.ProgramInfo.ToString());
PostStatusMessage(e.ProgramInfo);
}
}
/// <summary>