[API] Fix bug
This commit is contained in:
parent
e407cca90b
commit
4f1a65f758
@ -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…
Reference in New Issue
Block a user