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
commit c1c4c32966
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

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;
}