You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating the packages of our application to the latest version we found a bug when a user registers using Google. The API endpoint errors out with this message:
User is already registered with this e-mail address
I can confirm that there is no user registered with this email address before I send the request. The odd thing is that this user does get created properly in the database. So it's almost like it's creating the user once, and then trying again and failing.
Here is how my view looks like.
class GoogleLoginView(SocialLoginView):
adapter_class = GoogleOAuth2Adapter
client_class = OAuth2Client
I can confirm that this issue is not happening with Allauth v0.63.0 but does happen with v0.63.1
Not sure if this issue might be related but in there it was mentioned that the issue could be in dj-rest-auth
samiashi, jgourmelen, rzashakeri and gitumarkkDownchuck and jgourmelen