mirror of
https://github.com/friendica/friendica
synced 2024-11-10 00:23:00 +00:00
Merge remote-tracking branch 'upstream/develop' into legacy-oauth-removed
This commit is contained in:
commit
a8fb90f42f
1 changed files with 5 additions and 0 deletions
|
@ -330,6 +330,11 @@ class APContact
|
|||
$outbox = ActivityPub::fetchContent($apcontact['outbox']);
|
||||
}
|
||||
if (!empty($outbox['totalItems'])) {
|
||||
// Mastodon seriously allows for this condition?
|
||||
// Jul 20 2021 - See https://chaos.social/@m11 for a negative posts count
|
||||
if ($outbox['totalItems'] < 0) {
|
||||
$outbox['totalItems'] = 0;
|
||||
}
|
||||
$apcontact['statuses_count'] = $outbox['totalItems'];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue