Skip to content

Commit 7655ead

Browse files
committed
minor changes
1 parent beb5bfa commit 7655ead

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace PolMon
2121
{
2222
partial class Program
2323
{
24-
public const string mbVersion = "0.0.0.2";
24+
public const string mbVersion = "0.0.0.3";
2525

2626
public static int svPort = 8080;
2727
public static string svIP = "127.0.0.1";

core/mbNet.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ static async Task ServeJsonResponse(HttpListenerResponse response, PerformanceDa
3636
catch (HttpListenerException ex)
3737
{
3838
Console.WriteLine($"Error writing response: {ex.Message}");
39-
Console.ReadKey();
39+
// Console.ReadKey();
4040
}
4141
response.Close();
4242
}
@@ -57,7 +57,7 @@ static async Task ServeHtmlResponse(HttpListenerResponse response)
5757
catch (HttpListenerException ex)
5858
{
5959
Console.WriteLine($"Error writing response: {ex.Message}");
60-
Console.ReadKey();
60+
// Console.ReadKey();
6161
}
6262
response.Close();
6363
}

0 commit comments

Comments
 (0)