Only log when there is data

This commit is contained in:
Michael 2020-03-05 22:24:31 +00:00
parent 652a4ec9c7
commit 2f63249f3b
1 changed files with 18 additions and 14 deletions

View File

@ -1288,6 +1288,7 @@ class GContact
if (!empty($apcontact['followers']) && is_string($apcontact['followers'])) {
$followers = ActivityPub::fetchItems($apcontact['followers']);
if (!empty($followers)) {
Logger::info('Discover AP followers', ['url' => $url, 'contacts' => count($followers)]);
foreach ($followers as $follower) {
if (DBA::exists('gcontact', ['nurl' => Strings::normaliseLink(($follower))])) {
@ -1298,9 +1299,11 @@ class GContact
}
Logger::info('AP followers discovery finished', ['url' => $url]);
}
}
if (!empty($apcontact['following']) && is_string($apcontact['following'])) {
$followings = ActivityPub::fetchItems($apcontact['following']);
if (!empty($followings)) {
Logger::info('Discover AP followings', ['url' => $url, 'contacts' => count($followings)]);
foreach ($followings as $following) {
if (DBA::exists('gcontact', ['nurl' => Strings::normaliseLink(($following))])) {
@ -1311,6 +1314,7 @@ class GContact
}
Logger::info('AP followings discovery finished', ['url' => $url]);
}
}
$data = Probe::uri($url);