Fix: ap/show does not return on error (#3704)
This commit is contained in:
		
							parent
							
								
									c8607ff7b6
								
							
						
					
					
						commit
						f7964da899
					
				
					 1 changed files with 4 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -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…
	
	Add table
		Add a link
		
	
		Reference in a new issue