From 3b3f2dd34d0161eac52a6fae1a6ccb7787accae6 Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Thu, 26 Sep 2024 12:12:26 +0200 Subject: [PATCH] fix(accounts): This was, in fact, necessary --- src/shared/account.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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)