related 📌 Update to Supported Drupal core 10.4 Active
Both !81 and !82 solve the issue for me.
The <
and >
chars are the problem here.
A workaround is adding this line:
$this->address = trim(str_replace(["<", ">"], '', $address));
Still not sure where these are added though, the users_field_data db tables does not contain them.
More people seem to have this issue with the used embed/embed php module.
I found a fix in https://github.com/oscarotero/Embed/issues/520
The file to patch is vendor/embed/embed/src/Http/Crawler.php
Here's an updated patch for Drupal 7.100.
It bumps the update hook number since core also added `system_update_7087`