mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 18:07:31 -07:00
[API] Fix bug
This commit is contained in:
parent
67e3cd9e07
commit
4ec645b426
1 changed files with 1 additions and 2 deletions
|
@ -3,7 +3,6 @@
|
|||
*/
|
||||
import $ from 'cafy';
|
||||
import User from '../../models/user';
|
||||
import { validateUsername } from '../../models/user';
|
||||
import serialize from '../../serializers/user';
|
||||
|
||||
/**
|
||||
|
@ -15,7 +14,7 @@ import serialize from '../../serializers/user';
|
|||
*/
|
||||
module.exports = (params, me) => new Promise(async (res, rej) => {
|
||||
// Get 'query' parameter
|
||||
const [query, queryError] = $(params.query).string().pipe(validateUsername).$;
|
||||
const [query, queryError] = $(params.query).string().$;
|
||||
if (queryError) return rej('invalid query param');
|
||||
|
||||
// Get 'offset' parameter
|
||||
|
|
Loading…
Reference in a new issue