From 4a730b7b686c4e3c34eb6e0b8b24e2c924b74303 Mon Sep 17 00:00:00 2001 From: liuwf Date: Tue, 20 May 2025 14:41:41 +0800 Subject: [PATCH] =?UTF-8?q?fix-=E4=BF=AE=E5=A4=8Dhttp=E8=B6=85=E6=97=B6?= =?UTF-8?q?=E5=BD=B1=E5=93=8D=E5=85=B6=E4=BB=96=E7=BA=BF=E7=A8=8Bbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SlnMesnac.WCS/Global/HttpHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SlnMesnac.WCS/Global/HttpHelper.cs b/SlnMesnac.WCS/Global/HttpHelper.cs index 9a7f2ef..034d0d8 100644 --- a/SlnMesnac.WCS/Global/HttpHelper.cs +++ b/SlnMesnac.WCS/Global/HttpHelper.cs @@ -6,7 +6,7 @@ namespace SlnMesnac.WCS.Global { public static string SendPostMessage(string ip, int port, string url, string message, string contentType = "application/Text") { - string retsult = HttpPost("http://" + ip + ":" + port + "/" + url, message, contentType, 30, null); + string retsult = HttpPost("http://" + ip + ":" + port + "/" + url, message, contentType, 4, null); return retsult; }