Handle EmojiReaction activitiy (#5492)

* Handle some additional reaction activities

* Revert "Handle some additional reaction activities"

This reverts commit 1462ff12de08e8810023658e8ff7b5ee8bd7965b.

* EmojiReaction
This commit is contained in:
MeiMei 2020-01-30 08:03:50 +09:00 committed by GitHub
parent fb9fed545e
commit e97bfe5696
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View file

@ -19,5 +19,5 @@ export default async (actor: IRemoteUser, activity: ILike) => {
return;
}
await create(actor, note, activity._misskey_reaction);
await create(actor, note, activity._misskey_reaction || activity.content || activity.name);
};