Thanks for your patience. We hadn't seen this error before, but we were able to recreate it based on your settings in EasySocial on our development system and determine a fix. To test, can you please edit the /plugins/socialprofiles/easysocial/easysocial.php file. Around line 192, you'll see:
public function onNewUserSave()
{
$this->importSocialAvatar();Please update that by adding the 4 new lines below:
public function onNewUserSave()
{
$model = FD::model('Users');
if (!$model->metaExists($this->joomlaId)) {
$model->createMeta($this->joomlaId);
}
$this->importSocialAvatar();
Please let us know if that helps. We're evaluating the change, but it should be in future releases so you won't have to do this again.
Thanks,
Alex