Merge pull request #4402 from rabuzarus/20180205_-_fix_get_addr_in_probe

Bugfix: Probe - get the contact address from xrd 'subject' key
This commit is contained in:
Hypolite Petovan
2018-02-05 15:36:01 -05:00
committed by GitHub

View File

@@ -962,6 +962,10 @@ class Probe
}
}
if (substr($webfinger["subject"], 0, 5) == "acct:") {
$data["addr"] = substr($webfinger["subject"], 5);
}
if (!isset($data["network"]) || ($hcard_url == "")) {
return false;
}