Update the last query at a single place

This commit is contained in:
Michael 2020-08-01 08:56:07 +00:00
parent bb70258d48
commit a9a9f7d51d
2 changed files with 5 additions and 11 deletions

View file

@ -330,18 +330,11 @@ class PortableContact
}
}
$fields = ['last_poco_query' => DateTimeFormat::utcNow()];
DBA::update('gserver', $fields, ['nurl' => $server["nurl"]]);
return true;
} else {
// If the server hadn't replied correctly, then force a sanity check
GServer::check($server["url"], $server["network"], true);
// If we couldn't reach the server, we will try it some time later
$fields = ['last_poco_query' => DateTimeFormat::utcNow()];
DBA::update('gserver', $fields, ['nurl' => $server["nurl"]]);
return false;
}
}