]> git.mxchange.org Git - friendica.git/commitdiff
Changed probing call. Removed dupolicated code.
authorMichael <heluecht@pirati.ca>
Tue, 21 Mar 2017 13:43:53 +0000 (13:43 +0000)
committerMichael <heluecht@pirati.ca>
Tue, 21 Mar 2017 13:43:53 +0000 (13:43 +0000)
include/cronjobs.php

index 4c41f182fed2c530044e57f089690bf2f46babea..9acd33e219bee4dff7b3130e6e94ceb66c839905 100644 (file)
@@ -11,6 +11,7 @@ function cronjobs_run(&$argv, &$argc){
        require_once('include/photos.php');
        require_once('include/user.php');
        require_once('include/socgraph.php');
+       require_once('include/Probe.php');
 
        // No parameter set? So return
        if ($argc <= 1) {
@@ -233,17 +234,11 @@ function cron_repair_diaspora(App $a) {
                        return;
                }
 
-               $server_url = poco_detect_server($contact["url"]);
-
-               if (($server_url != "") AND !poco_check_server($server_url)) {
-                       continue;
-               }
-
                if (!poco_reachable($contact["url"])) {
                        continue;
                }
 
-               $data = probe_url($contact["url"]);
+               $data = Probe::uri($contact["url"]);
                if ($data["network"] != NETWORK_DIASPORA) {
                        continue;
                }