fix filter search index being too strict when looking for line breaks (#6318)
This commit is contained in:
		| @ -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; | ||||
|  | ||||
		Reference in New Issue
	
	Block a user