The current use of implode() in ContentModifyManager.php is deprecated in PHP 7.4 and incompatible with PHP 8.0:
$digest_nodes = $newline . implode($nodes, $newline);
Change the call to:
$digest_nodes = $newline . implode($newline, $nodes);
Fixed
3.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.