diff --git a/src/shared/account.py b/src/shared/account.py index f3f91bb..a4682ea 100644 --- a/src/shared/account.py +++ b/src/shared/account.py @@ -107,9 +107,8 @@ class SharedAccountAdapter(DefaultSocialAccountAdapter): sociallogin.user = user # If the user exists, connect to it - # FIXME: May not be necessary - # if sociallogin.is_existing: - # sociallogin.connect(request, sociallogin.user) + if sociallogin.is_existing: + sociallogin.connect(request, sociallogin.user) self._update_user(request, sociallogin)