Merge if-statements (#3478)
This commit is contained in:
parent
2e83440e70
commit
03588b3fd6
|
@ -21,11 +21,9 @@ export default async (actor: IRemoteUser, activity: ILike) => {
|
|||
let reaction = 'pudding';
|
||||
|
||||
// 他のMisskeyインスタンスからのリアクション
|
||||
if (activity._misskey_reaction) {
|
||||
if (validateReaction.ok(activity._misskey_reaction)) {
|
||||
if (activity._misskey_reaction && validateReaction.ok(activity._misskey_reaction)) {
|
||||
reaction = activity._misskey_reaction;
|
||||
}
|
||||
}
|
||||
|
||||
await create(actor, note, reaction);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue