We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b62f8e commit 008af4bCopy full SHA for 008af4b
WeChatBot.Net/Helper/HttpClientContainer.cs
@@ -15,15 +15,15 @@ public class HttpClientContainer
15
static HttpClientContainer()
16
{
17
FlurlClient = new FlurlClient()
18
- {
19
- AutoDispose = false
20
- }
+ {
+ AutoDispose = false
+ }
21
.EnableCookies()
22
.ConfigureClient(x =>
23
24
x.AfterCall = call =>
25
26
- Logger.Info($@" call.Duration: {call.Duration}ms");
+ Logger.Info($@"Call.Duration: {call.Duration?.TotalMilliseconds}ms");
27
};
28
x.HttpClientFactory = new CustomHttpClientFactory();
29
})
WeChatBot.Net/Util/ConsoleWriter.cs
@@ -7,7 +7,7 @@ namespace WeChatBot.Net.Util
7
8
public class ConsoleWriter
9
10
- private const string Black = "¨€";
+ private const string Black = "¡ö";
11
private const string White = "¡¡";
12
13
/// <summary>
0 commit comments