mirror of
https://github.com/2dust/v2rayN.git
synced 2025-04-19 13:42: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()
|
private async Task Init()
|
||||||
{
|
{
|
||||||
_ = DelayTestTask();
|
await DelayTestTask();
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task GetClashConnections()
|
private async Task GetClashConnections()
|
||||||
|
|
|
@ -95,7 +95,7 @@ namespace ServiceLib.ViewModels
|
||||||
|
|
||||||
private async Task Init()
|
private async Task Init()
|
||||||
{
|
{
|
||||||
_ = DelayTestTask();
|
await DelayTestTask();
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task DoRuleModeSelected(bool c)
|
private async Task DoRuleModeSelected(bool c)
|
||||||
|
@ -366,7 +366,7 @@ namespace ServiceLib.ViewModels
|
||||||
|
|
||||||
private async Task ProxiesDelayTest(bool blAll = true)
|
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())
|
if (item == null || result.IsNullOrEmpty())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue