mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	カスタム絵文字のURLが空文字列になる場合があるのを修正
This commit is contained in:
		
							parent
							
								
									97d6c1ee86
								
							
						
					
					
						commit
						7a6534f30b
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -32,8 +32,8 @@ export class EmojiEntityService {
 | 
			
		|||
			name: emoji.name,
 | 
			
		||||
			category: emoji.category,
 | 
			
		||||
			host: opts.omitHost ? undefined : emoji.host,
 | 
			
		||||
			// ?? emoji.originalUrl してるのは後方互換性のため
 | 
			
		||||
			url: opts.withUrl ? (emoji.publicUrl ?? emoji.originalUrl) : undefined,
 | 
			
		||||
			// || emoji.originalUrl してるのは後方互換性のため(publicUrlはstringなので??はだめ)
 | 
			
		||||
			url: opts.withUrl ? (emoji.publicUrl || emoji.originalUrl) : undefined,
 | 
			
		||||
		};
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue