mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-23 01:13:48 +01:00
[API] Fix bug
This commit is contained in:
parent
5fe2b72f24
commit
cca00a655a
@ -72,8 +72,10 @@ module.exports = async (params, user) =>
|
||||
{
|
||||
// Get 'name_id' parameter
|
||||
const nameId = params.name_id;
|
||||
if (nameId == null || nameId == '') {
|
||||
if (nameId == null) {
|
||||
return rej('name_id is required');
|
||||
} else if (typeof nameId != 'string') {
|
||||
return rej('name_id must be a string');
|
||||
}
|
||||
|
||||
// Validate name_id
|
||||
|
Loading…
Reference in New Issue
Block a user