Skip to content

Commit

Permalink
added new error message if cant contact patch server and allowed user…
Browse files Browse the repository at this point in the history
…s to re-try
  • Loading branch information
Daenks committed Jul 13, 2014
1 parent 8ba5926 commit 96598ca
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion patcher/ClientPatcher/ClientPatchForm.cs
Expand Up @@ -178,7 +178,10 @@ private void PreScan()
bgScanWorker.RunWorkerAsync(_patcher);
}
else
txtLog.AppendText("ERROR: Unable to download Patch Information!\r\n");
{
txtLog.AppendText("ERROR: Unable to download Patch Information! Please try again later or raise an issue at openmeridian.org/forums/\r\n");
btnPatch.Enabled = true;
}
}
private void PostScan()
{
Expand Down

0 comments on commit 96598ca

Please sign in to comment.