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
If user entry have empty field such as email - getattr(user, name, None) give as u'' (tested on Django 1.7.8).
And expression current_value is None will always return False if user field is empty. So we never can change empty and protected user fields.
The text was updated successfully, but these errors were encountered:
python-social-auth version was freezed to 0.2.9 because of issue omab/python-social-auth#671
This issue was fixed in omab/python-social-auth#672 and have appeared in 0.2.12 version
So now we can move to python-social-auth 0.2.12 version
If user entry have empty field such as
email
-getattr(user, name, None)
give asu''
(tested on Django 1.7.8).And expression
current_value is None
will always return False if user field is empty. So we never can change empty and protected user fields.The text was updated successfully, but these errors were encountered: