mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 23:51:01 -07:00
Fix users/list/update API (#2590)
This commit is contained in:
parent
2e638b9f16
commit
8df1e09bc7
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ export const meta = {
|
|||
}
|
||||
};
|
||||
|
||||
export default async (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
||||
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
||||
const [ps, psErr] = getParams(meta, params);
|
||||
if (psErr) throw psErr;
|
||||
|
||||
|
|
Loading…
Reference in a new issue