0
Fork 0
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:
wangsijie 2024-01-23 11:58:29 +08:00 committed by GitHub
parent 42e9513ca1
commit 43ce51ce2a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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();