mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2025-01-18 11:32:56 +09:00
ダイレクト投稿でユーザーが指定されていなかったらrejectする (#3724)
This commit is contained in:
parent
3868fc7459
commit
b619c65778
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user