updating misskey.... 2 merge conflicts here we go :sadgepray:
Discussion
nostr:npub1qca7tpvylljuenhfk9dw39a6qq272pv3h90u6w899cjtvntm6g5snukxew fix it :sad_cat2:
const object: ILike = {
type: 'Like',
id: `${this.config.url}/likes/${noteReaction.id}`,
actor: `${this.config.url}/users/${noteReaction.userId}`,
object: note.uri ? note.uri : `${this.config.url}/notes/${noteReaction.noteId}`,
<<<<<<< HEAD
} as any;
// Translate star into thumbs up
if (reaction != "\u{2B50}") {
object.content = reaction;
object._misskey_reaction = reaction;
}
=======
content: reaction,
_misskey_reaction: reaction,
};
>>>>>>> master
if (reaction.startsWith(':')) {
const name = reaction.replaceAll(':', '');