From 71217999005ce72bde50f21463aefcb8622bf952 Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Mon, 26 Jan 2026 16:31:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=AA=E4=BA=BA=E5=BF=98=E8=AE=B0=E5=AF=86?= =?UTF-8?q?=E7=A0=81=E5=90=8E=E9=87=8D=E7=BD=AE=20=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E6=AC=A1=E6=95=B0=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/Service/Management/UserService.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/IRaCIS.Core.Application/Service/Management/UserService.cs b/IRaCIS.Core.Application/Service/Management/UserService.cs index 05f9a0cae..0c0f54c33 100644 --- a/IRaCIS.Core.Application/Service/Management/UserService.cs +++ b/IRaCIS.Core.Application/Service/Management/UserService.cs @@ -442,6 +442,10 @@ namespace IRaCIS.Core.Application.Service await _mailVerificationService.AfterUserModifyPasswordSendEmailAsync(identityUserId); + + var find = await _identityUserRepository.FindAsync(identityUserId); + await _fusionCache.RemoveAsync(CacheKeys.UserLoginError(find.UserName)); + return ResponseOutput.Ok(); }