mirror of https://github.com/2dust/v2rayN
Fixed warnings
parent
7cc42ae249
commit
8597332b21
|
@ -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 New Issue