From e2023b6667e861bd5e71f408ca69f5eb5be1ae9f Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 25 Jun 2016 11:52:52 +0200 Subject: [PATCH] Store the guid value as well. --- include/Scrape.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/Scrape.php b/include/Scrape.php index d39c708f57..32a93872c3 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -794,7 +794,10 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { if(($network === NETWORK_FEED) && ($poll) && (! x($vcard,'fn'))) $vcard['fn'] = $url; - if (($notify != "") AND ($poll != "")) { + if ($diaspora_base != "") + $baseurl = $diaspora_base; + + if (($baseurl == "") AND ($notify != "") AND ($poll != "")) { $baseurl = matching_url(normalise_link($notify), normalise_link($poll)); $baseurl2 = matching_url($baseurl, normalise_link($profile)); @@ -824,6 +827,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { $result['name'] = $vcard['fn']; $result['nick'] = $vcard['nick']; + $result['guid'] = $diaspora_guid; $result['url'] = $profile; $result['addr'] = $addr; $result['batch'] = $batch;