[Glitch] Completely hide toots matched by “irreversible” filters even if they got to the client
This commit is contained in:
		
							parent
							
								
									e1b3251b3c
								
							
						
					
					
						commit
						68d2d73067
					
				
					 2 changed files with 11 additions and 0 deletions
				
			
		|  | @ -62,9 +62,14 @@ export function updateNotifications(notification, intlMessages, intlLocale) { | |||
|     let filtered = false; | ||||
| 
 | ||||
|     if (notification.type === 'mention') { | ||||
|       const dropRegex   = regexFromFilters(filters.filter(filter => filter.get('irreversible'))); | ||||
|       const regex       = regexFromFilters(filters); | ||||
|       const searchIndex = notification.status.spoiler_text + '\n' + unescapeHTML(notification.status.content); | ||||
| 
 | ||||
|       if (dropRegex && dropRegex.test(searchIndex)) { | ||||
|         return; | ||||
|       } | ||||
| 
 | ||||
|       filtered = regex && regex.test(searchIndex); | ||||
|     } | ||||
| 
 | ||||
|  |  | |||
|  | @ -78,6 +78,12 @@ export const makeGetStatus = () => { | |||
|         return null; | ||||
|       } | ||||
| 
 | ||||
|       const dropRegex = (accountReblog || accountBase).get('id') !== me && regexFromFilters(filters.filter(filter => filter.get('irreversible'))); | ||||
| 
 | ||||
|       if (dropRegex && dropRegex.test(statusBase.get('reblog') ? statusReblog.get('search_index') : statusBase.get('search_index'))) { | ||||
|         return null; | ||||
|       } | ||||
| 
 | ||||
|       const regex  = (accountReblog || accountBase).get('id') !== me && regexFromFilters(filters); | ||||
|       let filtered = false; | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue