From ffd27db6da4d8b322a968b52f6792b3e2e072d61 Mon Sep 17 00:00:00 2001 From: crazypeace Date: Sat, 16 Nov 2024 15:05:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=AE=A2=E9=98=85=E4=B8=AD?= =?UTF-8?q?=E6=96=87=E4=B9=B1=E7=A0=81=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- v2rayN/Base/WebClientEx.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/v2rayN/Base/WebClientEx.cs b/v2rayN/Base/WebClientEx.cs index 2cd5669..9da1876 100644 --- a/v2rayN/Base/WebClientEx.cs +++ b/v2rayN/Base/WebClientEx.cs @@ -1,5 +1,6 @@ using System; using System.Net; +using System.Text; namespace v2rayN.Base { @@ -10,6 +11,7 @@ class WebClientEx : WebClient public WebClientEx(int timeout = 3000) { Timeout = timeout; + this.Encoding = Encoding.UTF8; } protected override WebRequest GetWebRequest(Uri address)