mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
[API] Fix #3097
This commit is contained in:
parent
a8e8202b8a
commit
67d8980999
1 changed files with 2 additions and 0 deletions
|
@ -28,6 +28,8 @@ export default function <T extends IEndpointMeta>(meta: T, cb: (params: Params<T
|
|||
}
|
||||
|
||||
function getParams<T extends IEndpointMeta>(defs: T, params: any): [Params<T>, Error] {
|
||||
if (defs.params == null) return [params, null];
|
||||
|
||||
const x: any = {};
|
||||
let err: Error = null;
|
||||
Object.entries(defs.params).some(([k, def]) => {
|
||||
|
|
Loading…
Add table
Reference in a new issue