chenjunkai 6 년 전
부모
커밋
b4f6c6c3fc
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      Controller/UserController.py

+ 4 - 0
Controller/UserController.py

@@ -485,6 +485,10 @@ class ForgetPwdView(TemplateView):
             User = Device_User.objects.filter(username=userName)
         elif dataValid.email_validate(userName):
             User = Device_User.objects.filter(username=userName)
+            if not User.exists():
+                pass
+            else:
+                User = Device_User.objects.filter(userEmail=userName)
         else:
             return response.json(9)
         if User: