My django app is using Python Social Auth to register new users with Fb/G+/Twitter but I also want users to be able to associate their existing accounts to Facebook/Google+/Twitter. The problem is that using the standard pipeline whenever I connect a new account to the existing one, it changes all the info on the existing account to the info on the social account I'm associating to it. E.g.: if i have an account on my website with email abc@gmail.com but the email on the Facebook account I'm associating to it is 123@gmail.com, it changes to that one. I have tried removing the 'social.pipeline.user.user_details' from the pipeline but then when I create new users it doesn't pull the info from facebook to the account, which is something that I would like.
(How) Can I fix that?
thanks!