ダイレクト投稿でユーザーが指定されていなかったらrejectする (#3724)

This commit is contained in:
MeiMei 2018-12-23 04:17:42 +09:00 committed by syuilo
parent c9c2853150
commit 98acf919f1

View file

@ -188,6 +188,11 @@ export default async (user: IUser, data: Option, silent = false) => new Promise<
data.visibleUsers.push(u);
}
}
// ダイレクト投稿でユーザーが指定されていなかったらreject
if (data.visibleUsers.length === 0) {
return rej('Target user is not specified');
}
}
const note = await insertNote(user, data, tags, emojis, mentionedUsers);