fix bug that caused it to ignore all boosts, and all statuses that were not boosts
This commit is contained in:
		
							parent
							
								
									802b9d3906
								
							
						
					
					
						commit
						d60c44a03c
					
				| 
						 | 
					@ -174,7 +174,7 @@ async def listen(c, me):
 | 
				
			||||||
				if 'status' in status: continue
 | 
									if 'status' in status: continue
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				# Don't activate on boosts at all
 | 
									# Don't activate on boosts at all
 | 
				
			||||||
				if 'reblog' in status: continue
 | 
									if 'reblog' in status and status['reblog'] is not None: continue
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				status_id = status['id']
 | 
									status_id = status['id']
 | 
				
			||||||
				status_author = '@' + status['account']['acct']
 | 
									status_author = '@' + status['account']['acct']
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue