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
Trying to login authenticated user again using OpenID account
throws exception.
patch below solved my problem:
diff --git a/socialregistration/views.py b/socialregistration/views.py
index 1788fef..f050dc2 100644
--- a/socialregistration/views.py
+++ b/socialregistration/views.py
@@ -305,7 +305,7 @@ def openid_callback(request, template='socialregistration/openid.html',
except OpenIDProfile.DoesNotExist: # There can only be one profile with the same identity
profile = OpenIDProfile.objects.create(user=request.user,
identity=identity)
Trying to login authenticated user again using OpenID account
throws exception.
patch below solved my problem:
diff --git a/socialregistration/views.py b/socialregistration/views.py
index 1788fef..f050dc2 100644
--- a/socialregistration/views.py
+++ b/socialregistration/views.py
@@ -305,7 +305,7 @@ def openid_callback(request, template='socialregistration/openid.html',
except OpenIDProfile.DoesNotExist: # There can only be one profile with the same identity
profile = OpenIDProfile.objects.create(user=request.user,
identity=identity)
The text was updated successfully, but these errors were encountered: