]> git.mxchange.org Git - friendica.git/commitdiff
Increase the discover timeframe
authorMichael Vogel <icarus@dabo.de>
Thu, 3 Sep 2015 20:16:29 +0000 (22:16 +0200)
committerMichael Vogel <icarus@dabo.de>
Thu, 3 Sep 2015 20:16:29 +0000 (22:16 +0200)
include/socgraph.php

index 0f8afcf56df813bd6ff473f9acc71121ab74c237..c110d18a6045d92d7b054c42d1f9c85e02e18535 100644 (file)
@@ -1259,8 +1259,8 @@ function poco_discover($complete = false) {
 
        $no_of_queries = 5;
 
-       $last_update = date("c", time() - (60 * 60 * 6)); // 24
-       $last_update = date("c", time() - (60 * 60 * 24)); // 24
+       //$last_update = date("c", time() - (60 * 60 * 24)); // 24
+       $last_update = date("c", time() - (60 * 60 * 24 * 7));
 
        $r = q("SELECT `poco`, `nurl`, `url`, `network` FROM `gserver` WHERE `last_contact` >= `last_failure` AND `poco` != '' AND `last_poco_query` < '%s' ORDER BY RAND()", dbesc($last_update));
        if ($r)