diff --git a/v2rayN/ServiceLib/Services/UpdateService.cs b/v2rayN/ServiceLib/Services/UpdateService.cs index 636f3616..c4acbe80 100644 --- a/v2rayN/ServiceLib/Services/UpdateService.cs +++ b/v2rayN/ServiceLib/Services/UpdateService.cs @@ -485,6 +485,12 @@ public class UpdateService private async Task UpdateOtherFiles(Config config, Action updateFunc) { + //If it is not in China area, no update is required + if (config.ConstItem.GeoSourceUrl.IsNotEmpty()) + { + return; + } + _updateFunc = updateFunc; foreach (var url in Global.OtherGeoUrls)