mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	fix(backend): fix security patches (#15008)
This commit is contained in:
		
							parent
							
								
									0f59adc436
								
							
						
					
					
						commit
						53e827b18c
					
				
					 2 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -130,7 +130,7 @@ export class ApInboxService {
 | 
			
		|||
		if (actor.uri) {
 | 
			
		||||
			if (actor.lastFetchedAt == null || Date.now() - actor.lastFetchedAt.getTime() > 1000 * 60 * 60 * 24) {
 | 
			
		||||
				setImmediate(() => {
 | 
			
		||||
					this.apPersonService.updatePerson(actor.uri);
 | 
			
		||||
					this.apPersonService.updatePerson(actor.uri, resolver);
 | 
			
		||||
				});
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -139,8 +139,8 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
			
		|||
 | 
			
		||||
		return await this.mergePack(
 | 
			
		||||
			me,
 | 
			
		||||
			isActor(object) ? await this.apPersonService.createPerson(getApId(object)) : null,
 | 
			
		||||
			isPost(object) ? await this.apNoteService.createNote(getApId(object), undefined, resolver) : null,
 | 
			
		||||
			isActor(object) ? await this.apPersonService.createPerson(getApId(object), resolver) : null,
 | 
			
		||||
			isPost(object) ? await this.apNoteService.createNote(getApId(object), undefined, resolver, true) : null,
 | 
			
		||||
		);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue