mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
[API] Fix bug
This commit is contained in:
parent
37c21dc821
commit
8097083ed6
1 changed files with 4 additions and 0 deletions
|
@ -31,6 +31,10 @@ module.exports = (params, user) =>
|
|||
// Get 'user_id' parameter
|
||||
let recipient = params.user_id;
|
||||
if (recipient !== undefined && recipient !== null) {
|
||||
if (typeof recipient != 'string') {
|
||||
return rej('user_id must be a string');
|
||||
}
|
||||
|
||||
// Validate id
|
||||
if (!mongo.ObjectID.isValid(recipient)) {
|
||||
return rej('incorrect user_id');
|
||||
|
|
Loading…
Add table
Reference in a new issue