Bugfix: Friendica contacts were detected as Diaspora contacts. (Poco)

This commit is contained in:
Michael Vogel 2015-02-17 07:34:04 +01:00
parent b86b6e8e77
commit d9f222b330
1 changed files with 1 additions and 1 deletions

View File

@ -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"];