From d9f222b33016bf99ecb830c231ce69d9da708b48 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 17 Feb 2015 07:34:04 +0100 Subject: [PATCH] Bugfix: Friendica contacts were detected as Diaspora contacts. (Poco) --- include/socgraph.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/socgraph.php b/include/socgraph.php index 2738f8a70f..fc9d3aecb0 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -157,7 +157,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca if (($network == "") OR ($name == "") OR ($profile_photo == "")) { require_once("include/Scrape.php"); - $data = probe_url($profile_url, PROBE_DIASPORA); + $data = probe_url($profile_url); $network = $data["network"]; $name = $data["name"]; $profile_photo = $data["photo"];