Merge pull request #12797 from annando/emoji-react

We can now store emoji reactions from Misskey
This commit is contained in:
Philipp 2023-02-15 09:12:28 +01:00 committed by GitHub
commit 90717b602e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -1211,7 +1211,8 @@ class Item
Post\Thread::insert($item['uri-id'], $item);
}
if (!in_array($item['verb'], self::ACTIVITIES)) {
// The content of activities normally doesn't matter - except for likes from Misskey
if (!in_array($item['verb'], self::ACTIVITIES) || in_array($item['verb'], [Activity::LIKE, Activity::DISLIKE]) && !empty($item['body']) && ($item['body'] != $item['verb'])) {
Post\Content::insert($item['uri-id'], $item);
}