diff options
author | Mario <mario@mariovavti.com> | 2024-01-22 09:09:41 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-01-22 09:09:41 +0000 |
commit | b0664f7349c60183f0cb9597bd02b741d3c165c8 (patch) | |
tree | 4fa48e0c3b2761e0dc6d132f45a236ee838061c1 /Zotlabs/Lib/Activity.php | |
parent | 9cfd1c231843214351c81273622e848af4db7a45 (diff) | |
download | volse-hubzilla-b0664f7349c60183f0cb9597bd02b741d3c165c8.tar.gz volse-hubzilla-b0664f7349c60183f0cb9597bd02b741d3c165c8.tar.bz2 volse-hubzilla-b0664f7349c60183f0cb9597bd02b741d3c165c8.zip |
store the original announce actor (the one that pushed the item into our stream first) in source_xchan instead of owner_xchan. this way we will preserve the real owner for the thread and not have conflicts when dealing with deletes of comments or likes
Diffstat (limited to 'Zotlabs/Lib/Activity.php')
-rw-r--r-- | Zotlabs/Lib/Activity.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 2bf8543b2..1f36177bd 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -3368,12 +3368,10 @@ class Activity { } if ($announce_init) { - // If the fetch was initiated by an announce activity - // do not set item fetched. This way the owner will be set to the - // observer -> the announce actor - unset($item['item_fetched']); + // Store the sender of the initial announce + $item['source_xchan'] = $observer_hash; $item['verb'] = 'Announce'; - $item['parent_mid'] = $item['mid']; + $item['parent_mid'] = $item['thr_parent'] = $item['mid']; $item['item_thread_top'] = 1; } |