From fb48bbe2c1b0f2d4dfc55e1b7e245a9a7c2edb01 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 12 Dec 2025 11:52:05 +0000 Subject: [PATCH] fix replies id reference --- Zotlabs/Lib/Activity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 28a5958ea..7dd2af813 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -3092,7 +3092,7 @@ class Activity { // A message that has just been posted usually will not have any replies yet. // Also dismiss duplicates. - $attempt_replies_fetch = $replies_id && !empty($item['item_fetched']) && !in_array($channel['channel_id'], App::$cache['as_fetch_collection'][$act->obj['replies']['id']]['channels'] ?? []); + $attempt_replies_fetch = $replies_id && !empty($item['item_fetched']) && !in_array($channel['channel_id'], App::$cache['as_fetch_collection'][$replies_id]['channels'] ?? []); if ($attempt_replies_fetch) { App::$cache['as_fetch_collection'][$replies_id]['channels'][] = $channel['channel_id']; App::$cache['as_fetch_collection'][$replies_id]['force'] = intval($force);