mirror of
https://github.com/2dust/v2rayN.git
synced 2025-04-19 05:32:24 +00:00
Fixed warnings
This commit is contained in:
parent
7cc42ae249
commit
8597332b21
2 changed files with 3 additions and 3 deletions
|
@ -53,7 +53,7 @@ namespace ServiceLib.ViewModels
|
|||
|
||||
private async Task Init()
|
||||
{
|
||||
_ = DelayTestTask();
|
||||
await DelayTestTask();
|
||||
}
|
||||
|
||||
private async Task GetClashConnections()
|
||||
|
|
|
@ -95,7 +95,7 @@ namespace ServiceLib.ViewModels
|
|||
|
||||
private async Task Init()
|
||||
{
|
||||
_ = DelayTestTask();
|
||||
await DelayTestTask();
|
||||
}
|
||||
|
||||
private async Task DoRuleModeSelected(bool c)
|
||||
|
@ -366,7 +366,7 @@ namespace ServiceLib.ViewModels
|
|||
|
||||
private async Task ProxiesDelayTest(bool blAll = true)
|
||||
{
|
||||
ClashApiHandler.Instance.ClashProxiesDelayTest(blAll, _proxyDetails.ToList(), async (item, result) =>
|
||||
ClashApiHandler.Instance.ClashProxiesDelayTest(blAll, _proxyDetails.ToList(), (item, result) =>
|
||||
{
|
||||
if (item == null || result.IsNullOrEmpty())
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue