Scrape: Changed detection for the profile link

This commit is contained in:
Michael Vogel 2016-04-03 19:29:35 +02:00 committed by Roland Haeder
parent af80d67f9c
commit 71f93d0bdf
No known key found for this signature in database
GPG key ID: B72F8185C6C7BD78

View file

@ -705,10 +705,14 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) {
if (($vcard["nick"] == "") AND ($data["header"]["author-nick"] != "")) if (($vcard["nick"] == "") AND ($data["header"]["author-nick"] != ""))
$vcard["nick"] = $data["header"]["author-nick"]; $vcard["nick"] = $data["header"]["author-nick"];
if (($network == NETWORK_OSTATUS) AND ($data["header"]["author-id"] != "")) if ($network == NETWORK_OSTATUS) {
$alias = $data["header"]["author-id"]; if ($data["header"]["author-id"] != "")
$alias = $data["header"]["author-id"];
if(!$profile AND ($data["header"]["author-link"] != "") AND !in_array($network, array("", NETWORK_FEED))) if ($data["header"]["author-link"] != "")
$profile = $data["header"]["author-link"];
} elseif(!$profile AND ($data["header"]["author-link"] != "") AND !in_array($network, array("", NETWORK_FEED)))
$profile = $data["header"]["author-link"]; $profile = $data["header"]["author-link"];
} }
} }