Don't store emoji images as media but links

This commit is contained in:
Michael 2021-10-03 09:42:14 +00:00
parent 10038bb578
commit 42790fbc1f
3 changed files with 23 additions and 3 deletions

View file

@ -388,6 +388,10 @@ class Media
}
foreach ($attachments as $attachment) {
if (Post\Link::exists($uriid, $attachment['preview'] ?? $attachment['url'])) {
continue;
}
// Only store attachments that are part of the unshared body
if (Item::containsLink($unshared_body, $attachment['preview'] ?? $attachment['url'], $attachment['type'])) {
self::insert($attachment);