Skip to content

Commit

Permalink
Fix Bug when Restarting the Http Server
Browse files Browse the repository at this point in the history
- Fix bug when restarting the Http Server
- Update the goldhen payload binary with the lastest changes
  • Loading branch information
marcussacana committed Apr 19, 2024
1 parent da12992 commit d933d0f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@ public void Start()

public void Stop()
{
Server.Stop();
try
{
Server.Stop();
}
catch { }
LOG("Server Stopped");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public static string? MainExecutable

const string UpdateList = "Update.ini";

public static Version CurrentVersion = new Version("6.2.6");
public static Version CurrentVersion = new Version("6.2.7");

public static Version? LastVersion = null;

Expand Down
Binary file modified DirectPackageInstaller/DirectPackageInstaller/payload
Binary file not shown.

0 comments on commit d933d0f

Please sign in to comment.