mirror of
https://github.com/friendica/friendica
synced 2025-04-19 09:50:11 +00:00
Bookwyrm posts now work
This commit is contained in:
parent
7eb410bed7
commit
8c602071c2
5 changed files with 49 additions and 25 deletions
|
@ -299,7 +299,7 @@ class Processor
|
|||
if (empty($activity['directmessage']) && ($activity['id'] != $activity['reply-to-id']) && !Post::exists(['uri' => $activity['reply-to-id']])) {
|
||||
$recursion_depth = $activity['recursion-depth'] ?? 0;
|
||||
Logger::notice('Parent not found. Try to refetch it.', ['parent' => $activity['reply-to-id'], 'recursion-depth' => $recursion_depth]);
|
||||
if ($recursion_depth < 10000) {
|
||||
if ($recursion_depth < 10) {
|
||||
$result = self::fetchMissingActivity($activity['reply-to-id'], $activity, '', Receiver::COMPLETION_AUTO);
|
||||
$fetch_by_worker = empty($result);
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue