Merge pull request #12896 from HankG/mastodon-status-edit-fix-link-preview-changing

Fix being able to change/remove attached links.
This commit is contained in:
Hypolite Petovan 2023-03-16 16:39:18 -04:00 committed by GitHub
commit 1950776142
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -151,6 +151,9 @@ class Statuses extends BaseApi
throw new \Exception('Missing parameters in definition');
}
// Link Preview Attachment Processing
Post\Media::deleteByURIId($post['uri-id'], [Post\Media::HTML]);
Item::update($item, ['id' => $post['id']]);
foreach (Tag::getByURIId($post['uri-id']) as $tagToRemove) {