The "+ Remote" link on your profile page broke because of exception.
function pullRemoteProfile()
{
$validate = new Validate();
- $this->profile_uri = Discovery::normalize($this->trimmed('profile'));
+ try {
+ $this->profile_uri = Discovery::normalize($this->trimmed('profile'));
+ } catch (Exception $e) {
+ $this->profile_uri = null;
+ }
try {
if (Discovery::isAcct($this->profile_uri) && $validate->email(mb_substr($this->profile_uri, 5))) {
$this->oprofile = Ostatus_profile::ensureWebfinger($this->profile_uri);