Fix: ap/show does not return on error (#3704)

This commit is contained in:
MeiMei 2018-12-21 00:09:02 +09:00 committed by syuilo
parent c8607ff7b6
commit f7964da899
1 changed files with 4 additions and 5 deletions

View File

@ -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));
}));
/***