forked from FoundKeyGang/FoundKey
Merge if-statements (#3478)
This commit is contained in:
parent
2e83440e70
commit
03588b3fd6
1 changed files with 2 additions and 4 deletions
|
@ -21,10 +21,8 @@ export default async (actor: IRemoteUser, activity: ILike) => {
|
|||
let reaction = 'pudding';
|
||||
|
||||
// 他のMisskeyインスタンスからのリアクション
|
||||
if (activity._misskey_reaction) {
|
||||
if (validateReaction.ok(activity._misskey_reaction)) {
|
||||
reaction = activity._misskey_reaction;
|
||||
}
|
||||
if (activity._misskey_reaction && validateReaction.ok(activity._misskey_reaction)) {
|
||||
reaction = activity._misskey_reaction;
|
||||
}
|
||||
|
||||
await create(actor, note, reaction);
|
||||
|
|
Loading…
Reference in a new issue