Skip to content

Commit eec47c1

Browse files
committed
fix(version): update version to 2.6.1 for release and disable proxy in HttpClient
1 parent 1f4a6c9 commit eec47c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

LuckyLilliaDesktop.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<Product>Lucky Lillia Desktop</Product>
1212
<AssemblyTitle>Lucky Lillia Desktop</AssemblyTitle>
1313
<Description>幸运莉莉娅桌面端</Description>
14-
<Version>2.6.0</Version>
14+
<Version>2.6.1</Version>
1515
</PropertyGroup>
1616

1717
<!-- Windows特定配置 -->

Services/PmhqClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class PmhqClient : IPmhqClient, IDisposable
4444
public PmhqClient(ILogger<PmhqClient> logger)
4545
{
4646
_logger = logger;
47-
_httpClient = new HttpClient
47+
_httpClient = new HttpClient(new HttpClientHandler { UseProxy = false })
4848
{
4949
Timeout = TimeSpan.FromSeconds(5)
5050
};

0 commit comments

Comments
 (0)