From 94788685137e97b746559f3cd932f3be3a6de44d Mon Sep 17 00:00:00 2001 From: ALEXTANG <574809918@qq.com> Date: Thu, 26 Oct 2023 12:28:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3HttpDispose?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修正HttpDispose --- UnityProject/Assets/TEngine/Runtime/Core/Utility/Utility.Http.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/UnityProject/Assets/TEngine/Runtime/Core/Utility/Utility.Http.cs b/UnityProject/Assets/TEngine/Runtime/Core/Utility/Utility.Http.cs index eee6fa49..2f6c0410 100644 --- a/UnityProject/Assets/TEngine/Runtime/Core/Utility/Utility.Http.cs +++ b/UnityProject/Assets/TEngine/Runtime/Core/Utility/Utility.Http.cs @@ -93,6 +93,7 @@ namespace TEngine Log.Warning($"HttpPost {unityWebRequest.url} be canceled!"); unityWebRequest.Dispose(); cts.Dispose(); + return string.Empty; } } catch (OperationCanceledException ex)