]> git.mxchange.org Git - friendica.git/commitdiff
Add pump.io network to probing supported networks
authorHypolite Petovan <mrpetovan@gmail.com>
Tue, 7 Mar 2017 21:43:22 +0000 (16:43 -0500)
committerHypolite Petovan <mrpetovan@gmail.com>
Tue, 7 Mar 2017 21:43:22 +0000 (16:43 -0500)
- Remove useless condition

include/Contact.php

index 5b0599449f6518f7fd71603d00fa820deab54a69..ee5ec0cfceb0c681dbba76487b9f0af3b9e84505 100644 (file)
@@ -578,8 +578,8 @@ function get_contact($url, $uid = 0, $no_update = false) {
        require_once('include/Probe.php');
        $data = Probe::uri($url);
 
-       // Does this address belongs to a valid network?
-       if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) {
+       // Last try in gcontact for unsupported networks
+       if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA, NETWORK_PUMPIO))) {
                if ($uid != 0) {
                        return 0;
                }
@@ -594,11 +594,6 @@ function get_contact($url, $uid = 0, $no_update = false) {
                $data = $gcontacts[0];
        }
 
-       // Unable to convert nick@server.tld into http://server.tld/nick
-       if (!$data['url'] && (!strstr($url, "http") OR strstr($url, "@"))) {
-               return 0;
-       }
-
        $url = $data["url"];
 
        if (!$contact_id) {