Merge pull request #1397 from annando/release-3.3.3

Bugfix: Friendica contacts were detected as Diaspora contacts. (Poco)
This commit is contained in:
Tobias Diekershoff 2015-02-17 07:43:42 +01:00
commit 03d779971a
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"];