]> git.mxchange.org Git - friendica.git/commitdiff
Convert "followers" path when copying receivers
authorMichael <heluecht@pirati.ca>
Sun, 29 Oct 2023 16:17:16 +0000 (16:17 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 29 Oct 2023 16:17:16 +0000 (16:17 +0000)
src/Content/Item.php

index e2942e27e62b0f14d59b35149d39a6e7b9d82b66..d28ec4066d66e250eea7f047219710f30598892d 100644 (file)
@@ -1074,8 +1074,18 @@ class Item
 
        public function copyPermissions(int $fromUriId, int $toUriId)
        {
+               $from        = Post::selectFirstPost(['author-id'], ['uri-id' => $fromUriId]);
+               $from_author = DBA::selectFirst('account-view', ['ap-followers'], ['id' => $from['author-id']]);
+               $to          = Post::selectFirstPost(['author-id'], ['uri-id' => $toUriId]);
+               $to_author   = DBA::selectFirst('account-view', ['ap-followers'], ['id' => $to['author-id']]);
+
                $existing = array_column(Tag::getByURIId($toUriId, [Tag::TO, Tag::CC, Tag::BCC]), 'url');
+
                foreach (Tag::getByURIId($fromUriId, [Tag::TO, Tag::CC, Tag::BCC]) as $receiver) {
+                       if ($receiver['url'] == $from_author['ap-followers']) {
+                               $receiver['url']  = $to_author['ap-followers'];
+                               $receiver['name'] = trim(parse_url($receiver['url'], PHP_URL_PATH), '/');
+                       }
                        if (in_array($receiver['url'], $existing)) {
                                continue;
                        }