mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	pass resolver when creating notes via side-effect
This commit is contained in:
		
							parent
							
								
									9d3321fca4
								
							
						
					
					
						commit
						9d5bc6cb28
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -165,7 +165,7 @@ export class ApInboxService {
 | 
			
		|||
		} else if (isAnnounce(activity)) {
 | 
			
		||||
			return await this.announce(actor, activity, resolver);
 | 
			
		||||
		} else if (isLike(activity)) {
 | 
			
		||||
			return await this.like(actor, activity);
 | 
			
		||||
			return await this.like(actor, activity, resolver);
 | 
			
		||||
		} else if (isUndo(activity)) {
 | 
			
		||||
			return await this.undo(actor, activity, resolver);
 | 
			
		||||
		} else if (isBlock(activity)) {
 | 
			
		||||
| 
						 | 
				
			
			@ -197,13 +197,13 @@ export class ApInboxService {
 | 
			
		|||
	}
 | 
			
		||||
 | 
			
		||||
	@bindThis
 | 
			
		||||
	private async like(actor: MiRemoteUser, activity: ILike): Promise<string> {
 | 
			
		||||
	private async like(actor: MiRemoteUser, activity: ILike, resolver?: Resolver): Promise<string> {
 | 
			
		||||
		const targetUri = getApId(activity.object);
 | 
			
		||||
 | 
			
		||||
		const object = fromTuple(activity.object);
 | 
			
		||||
		if (!object) return 'skip: activity has no object property';
 | 
			
		||||
 | 
			
		||||
		const note = await this.apNoteService.resolveNote(object);
 | 
			
		||||
		const note = await this.apNoteService.resolveNote(object, { resolver });
 | 
			
		||||
		if (!note) return `skip: target note not found ${targetUri}`;
 | 
			
		||||
 | 
			
		||||
		await this.apNoteService.extractEmojis(activity.tag ?? [], actor.host).catch(() => null);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue