Skip to content

Commit

Permalink
feat: change email to lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethereal-O committed Mar 6, 2024
1 parent 7fedbfd commit 9b77e92
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions eval/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ def generate():
email = request.json.get("email", None)
if email is None:
return jsonify({"result": "false", "data": None, "message": "email is None"})
# change to samll case
email = email.lower()

# check if version is valid
valid_version = False
Expand Down

0 comments on commit 9b77e92

Please sign in to comment.