]> git.mxchange.org Git - friendica.git/commitdiff
Bugfix: Friendica contacts were detected as Diaspora contacts. (Poco)
authorMichael Vogel <icarus@dabo.de>
Tue, 17 Feb 2015 06:34:04 +0000 (07:34 +0100)
committerMichael Vogel <icarus@dabo.de>
Tue, 17 Feb 2015 06:34:04 +0000 (07:34 +0100)
include/socgraph.php

index 2738f8a70f3814b758a4f75f63d21ea4c696b00c..fc9d3aecb0cf902e37ce71976e59f1b95aff78ec 100644 (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"];