Compare commits

...

2 Commits
6.41 ... 6.42

Author SHA1 Message Date
2dust
ee3159b00e Update 6.42 2024-03-31 17:26:02 +08:00
2dust
86d2c307f1 Bug fix 2024-03-31 17:23:33 +08:00
3 changed files with 7 additions and 8 deletions

View File

@@ -61,6 +61,7 @@ namespace v2rayN.Handler
while (!_exitFlag)
{
await Task.Delay(1000);
try
{
if (!(_config.runningCoreType is ECoreType.sing_box or ECoreType.clash or ECoreType.clash_meta or ECoreType.mihomo))
@@ -105,10 +106,6 @@ namespace v2rayN.Handler
catch
{
}
finally
{
await Task.Delay(1000);
}
}
}

View File

@@ -49,6 +49,7 @@ namespace v2rayN.Handler
{
while (!_exitFlag)
{
await Task.Delay(1000);
try
{
if (!(_config.runningCoreType is ECoreType.Xray or ECoreType.v2fly or ECoreType.v2fly_v5 or ECoreType.SagerNet))
@@ -60,7 +61,8 @@ namespace v2rayN.Handler
QueryStatsResponse? res = null;
try
{
res = await _client.QueryStatsAsync(new QueryStatsRequest() { Pattern = "", Reset = true });
if (_client != null)
res = await _client.QueryStatsAsync(new QueryStatsRequest() { Pattern = "", Reset = true });
}
catch
{
@@ -72,8 +74,8 @@ namespace v2rayN.Handler
_updateFunc(server);
}
}
await Task.Delay(1000);
if (_channel != null) await _channel.ConnectAsync();
if (_channel != null)
await _channel.ConnectAsync();
}
catch
{

View File

@@ -10,7 +10,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>v2rayN.ico</ApplicationIcon>
<Copyright>Copyright © 2017-2024 (GPLv3)</Copyright>
<FileVersion>6.41</FileVersion>
<FileVersion>6.42</FileVersion>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
</PropertyGroup>