Merge pull request #2851 from mei23/mei-1008-fix-apshow2
ap/showが返ってこないことがあるのを修正
This commit is contained in:
commit
6affb4fe97
@ -24,15 +24,15 @@ export const meta = {
|
||||
},
|
||||
};
|
||||
|
||||
export default (params: any) => new Promise(async (res, rej) => {
|
||||
export default async (params: any) => {
|
||||
const [ps, psErr] = getParams(meta, params);
|
||||
if (psErr) return rej(psErr);
|
||||
if (psErr) throw psErr;
|
||||
|
||||
const object = await fetchAny(ps.uri);
|
||||
if (object !== null) return res(object);
|
||||
if (object !== null) return object;
|
||||
|
||||
return rej('object not found');
|
||||
});
|
||||
throw new Error('object not found');
|
||||
};
|
||||
|
||||
/***
|
||||
* URIからUserかNoteを解決する
|
||||
|
Loading…
Reference in New Issue
Block a user