fix: key validation when magic sign in (#3403)

This commit is contained in:
Nikhil 2024-01-18 16:04:04 +05:30 committed by GitHub
parent c5e7c2f6a8
commit af5057defa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -325,7 +325,7 @@ class MagicSignInEndpoint(BaseAPIView):
)
user_token = request.data.get("token", "").strip()
key = request.data.get("key", False).strip().lower()
key = request.data.get("key", "").strip().lower()
if not key or user_token == "":
return Response(