mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
fix(core): should throw 500 on file upload error (#5274)
This commit is contained in:
parent
42e9513ca1
commit
43ce51ce2a
1 changed files with 4 additions and 1 deletions
|
@ -87,7 +87,10 @@ export default function userAssetsRoutes<T extends AuthedRouter>(...[router]: Ro
|
|||
|
||||
ctx.body = result;
|
||||
} catch {
|
||||
throw new RequestError('storage.upload_error');
|
||||
throw new RequestError({
|
||||
code: 'storage.upload_error',
|
||||
status: 500,
|
||||
});
|
||||
}
|
||||
|
||||
return next();
|
||||
|
|
Loading…
Add table
Reference in a new issue