Fix: ap/show does not return on error (#3704)
This commit is contained in:
parent
c8607ff7b6
commit
f7964da899
@ -25,11 +25,10 @@ export const meta = {
|
||||
},
|
||||
};
|
||||
|
||||
export default define(meta, (ps) => new Promise(async (res, rej) => {
|
||||
const object = await fetchAny(ps.uri);
|
||||
if (object == null) return rej('object not found');
|
||||
|
||||
res(object);
|
||||
export default define(meta, (ps) => new Promise((res, rej) => {
|
||||
fetchAny(ps.uri)
|
||||
.then(object => object != null ? res(object) : rej('object not found'))
|
||||
.catch(e => rej(e));
|
||||
}));
|
||||
|
||||
/***
|
||||
|
Loading…
Reference in New Issue
Block a user