From: Michael Vogel Date: Sat, 2 Jul 2016 19:14:21 +0000 (+0200) Subject: Bugfix: The notify value for Diaspora wasn't assigned X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=34475ad262bd81091c573ebc95c89afedcd2a411;p=friendica.git Bugfix: The notify value for Diaspora wasn't assigned --- diff --git a/include/Scrape.php b/include/Scrape.php index 32a93872c3..e2dc7d6599 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -604,7 +604,8 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { $pubkey = $hcard_key; } } - if(($network != "") && $diaspora_base && $diaspora_guid) { + + if(($network == "") && $diaspora_base && $diaspora_guid) { $diaspora_notify = $diaspora_base.'receive/users/'.$diaspora_guid; $diaspora = true;