diff --git a/v2rayN/v2rayN/Handler/DownloadHandle.cs b/v2rayN/v2rayN/Handler/DownloadHandle.cs index 19840eee..131b89c1 100644 --- a/v2rayN/v2rayN/Handler/DownloadHandle.cs +++ b/v2rayN/v2rayN/Handler/DownloadHandle.cs @@ -206,7 +206,7 @@ namespace v2rayN.Handler try { HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create(url); - myHttpWebRequest.Timeout = 5000; + myHttpWebRequest.Timeout = 30 * 1000; myHttpWebRequest.Proxy = webProxy; Stopwatch timer = new Stopwatch();