فهرست منبع

优化短信验证码使用即删除短信验证码

zhontai 1 سال پیش
والد
کامیت
1b7b687dd4
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/platform/ZhonTai.Admin/Services/Auth/AuthService.cs

+ 1 - 1
src/platform/ZhonTai.Admin/Services/Auth/AuthService.cs

@@ -462,11 +462,11 @@ public class AuthService : BaseService, IAuthService, IDynamicApi
             if (await Cache.ExistsAsync(codeKey))
             {
                 var code = await Cache.GetAsync(codeKey);
+                await Cache.DelAsync(codeKey);
                 if (code != input.Code)
                 {
                     throw ResultOutput.Exception("验证码输入有误,请重新输入");
                 }
-                await Cache.DelAsync(codeKey);
             }
             else
             {