fix: add real delay test for custom config (#5377)

pull/5394/head
Random Guy 2024-07-21 07:14:12 +03:30 committed by GitHub
parent 4938ce6364
commit 06d0c6517d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -736,7 +736,7 @@ namespace v2rayN.ViewModels
public void TestServerAvailability()
{
var item = ConfigHandler.GetDefaultServer(_config);
if (item == null || item.configType == EConfigType.Custom)
if (item == null)
{
return;
}
@ -1293,4 +1293,4 @@ namespace v2rayN.ViewModels
#endregion UI
}
}
}