Bugfix: Probe - get the contact address from xrd 'subject' key

This commit is contained in:
rabuzarus 2018-02-05 21:27:40 +01:00
parent 99aa9bedd0
commit 984bb2a808
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;
}