mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	handle {http://fedibird.com/ns#}quoteUri on note edit
				
					
				
			my previous PR had missed this part of the code
This commit is contained in:
		
							parent
							
								
									38e35e1472
								
							
						
					
					
						commit
						7136735c14
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -413,7 +413,7 @@ export class ApNoteService {
 | 
			
		|||
		// 引用
 | 
			
		||||
		let quote: MiNote | undefined | null = null;
 | 
			
		||||
 | 
			
		||||
		if (note._misskey_quote ?? note.quoteUrl) {
 | 
			
		||||
		if (note._misskey_quote ?? note.quoteUrl ?? note.quoteUri) {
 | 
			
		||||
			const tryResolveNote = async (uri: string): Promise<
 | 
			
		||||
				| { status: 'ok'; res: MiNote }
 | 
			
		||||
				| { status: 'permerror' | 'temperror' }
 | 
			
		||||
| 
						 | 
				
			
			@ -430,7 +430,7 @@ export class ApNoteService {
 | 
			
		|||
				}
 | 
			
		||||
			};
 | 
			
		||||
 | 
			
		||||
			const uris = unique([note._misskey_quote, note.quoteUrl].filter((x): x is string => typeof x === 'string'));
 | 
			
		||||
			const uris = unique([note._misskey_quote, note.quoteUrl, note.quoteUri].filter((x): x is string => typeof x === 'string'));
 | 
			
		||||
			const results = await Promise.all(uris.map(tryResolveNote));
 | 
			
		||||
 | 
			
		||||
			quote = results.filter((x): x is { status: 'ok', res: MiNote } => x.status === 'ok').map(x => x.res).at(0);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue