Changed probing call. Removed dupolicated code.

This commit is contained in:
Michael 2017-03-21 13:43:53 +00:00
parent be9db7f060
commit 19825eddf7
1 changed files with 2 additions and 7 deletions

View 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;
}