We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LOGIN_ERROR_URL
In social_django/middleware.py, the redirect URI is resolved like this:
social_django/middleware.py
def get_redirect_uri(self, request, exception): strategy = getattr(request, "social_strategy", None) return strategy.setting("LOGIN_ERROR_URL")
This doesn't pass the backend into strategy.setting() which means it doesn't load a backend-specific view.
backend
strategy.setting()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
social_django/middleware.py
, the redirect URI is resolved like this:This doesn't pass the
backend
intostrategy.setting()
which means it doesn't load a backend-specific view.The text was updated successfully, but these errors were encountered: