Fix hide reblogs in glitch frontend (#5909)
This applies 6bb4fb008a to the glitch copy
of the Mastodon frontend.
			
			
This commit is contained in:
		
							parent
							
								
									9075094715
								
							
						
					
					
						commit
						82cd4a0a3c
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -68,7 +68,7 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  onReblogToggle (account) {
 | 
					  onReblogToggle (account) {
 | 
				
			||||||
    if (account.getIn(['relationship', 'show_reblogs'])) {
 | 
					    if (account.getIn(['relationship', 'showing_reblogs'])) {
 | 
				
			||||||
      dispatch(followAccount(account.get('id'), false));
 | 
					      dispatch(followAccount(account.get('id'), false));
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
      dispatch(followAccount(account.get('id'), true));
 | 
					      dispatch(followAccount(account.get('id'), true));
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue