# HG changeset patch # User Brad Greco # Date 1560718469 14400 # Node ID b0af6b4bed4d860ccb441ec0f76109701d3e2417 # Parent f6235dc0a8ec33ee54011ee55096939a0712bb70 Change update URL to real URL. diff -r f6235dc0a8ec -r b0af6b4bed4d ServerMonitor/Forms/ServerSummaryForm.cs --- a/ServerMonitor/Forms/ServerSummaryForm.cs Fri Jun 14 21:01:55 2019 -0400 +++ b/ServerMonitor/Forms/ServerSummaryForm.cs Sun Jun 16 16:54:29 2019 -0400 @@ -387,7 +387,7 @@ UpdateManager manager = UpdateManager.Instance; // Make the update manager happy if the program was just restarted to apply an update. manager.ReinstateIfRestarted(); - manager.UpdateSource = new SimpleWebSource("https://www.bgreco.net/test/servermonitor.xml"); + manager.UpdateSource = new SimpleWebSource("https://www.bgreco.net/servermonitor/update.xml"); if (manager.State == UpdateManager.UpdateProcessState.NotChecked) manager.BeginCheckForUpdates(CheckForUpdatesCallback, null); }