fix filter search index being too strict when looking for line breaks (#6318)
This commit is contained in:
		
							parent
							
								
									55567d05b2
								
							
						
					
					
						commit
						4d15390eb6
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -54,7 +54,7 @@ const normalizeStatus = (state, status) => {
 | 
			
		|||
    normalStatus.reblog = status.reblog.id;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  const searchContent = [status.spoiler_text, status.content].join('\n\n').replace(/<br \/>/g, '\n').replace(/<\/p><p>/g, '\n\n');
 | 
			
		||||
  const searchContent = [status.spoiler_text, status.content].join('\n\n').replace(/<br\s*\/?>/g, '\n').replace(/<\/p><p>/g, '\n\n');
 | 
			
		||||
 | 
			
		||||
  const emojiMap = normalStatus.emojis.reduce((obj, emoji) => {
 | 
			
		||||
    obj[`:${emoji.shortcode}:`] = emoji;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue