mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 15:34:13 +00:00 
			
		
		
		
	fix exception handling for Undo activities
This commit is contained in:
		
							parent
							
								
									cfc3ab4b04
								
							
						
					
					
						commit
						0de7a084a9
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -666,7 +666,7 @@ export class ApInboxService {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		const object = await resolver.resolve(activity.object).catch(e => {
 | 
							const object = await resolver.resolve(activity.object).catch(e => {
 | 
				
			||||||
			this.logger.error(`Resolution failed: ${e}`);
 | 
								this.logger.error(`Resolution failed: ${e}`);
 | 
				
			||||||
			return e;
 | 
								throw e;
 | 
				
			||||||
		});
 | 
							});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		// don't queue because the sender may attempt again when timeout
 | 
							// don't queue because the sender may attempt again when timeout
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue