mirror of
https://github.com/syuilo/ai.git
synced 2024-11-22 13:17:59 +00:00
✌️
This commit is contained in:
parent
990cd7ccd2
commit
8886a24f16
|
@ -125,11 +125,13 @@ export default class 藍 {
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
// リアクションする
|
// リアクションする
|
||||||
|
if (reaction) {
|
||||||
this.api('notes/reactions/create', {
|
this.api('notes/reactions/create', {
|
||||||
noteId: msg.id,
|
noteId: msg.id,
|
||||||
reaction: reaction
|
reaction: reaction
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}, 1000);
|
}, 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -17,11 +17,11 @@ export default class FollowModule implements IModule {
|
||||||
userId: msg.userId,
|
userId: msg.userId,
|
||||||
});
|
});
|
||||||
return {
|
return {
|
||||||
reaction: 'like'
|
reaction: msg.friend.love >= 0 ? 'like' : null
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
return {
|
return {
|
||||||
reaction: 'hmm'
|
reaction: msg.friend.love >= 0 ? 'hmm' : null
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue