mirror of https://github.com/tootsuite/mastodon
				
				
				
			Also unblock users who were suspended/silenced before dates were recorded
							parent
							
								
									30296f1bb0
								
							
						
					
					
						commit
						a015c65d2d
					
				| 
						 | 
				
			
			@ -16,9 +16,9 @@ class UnblockDomainService < BaseService
 | 
			
		|||
  def blocked_accounts
 | 
			
		||||
    scope = Account.where(domain: domain_block.domain)
 | 
			
		||||
    if domain_block.silence?
 | 
			
		||||
      scope.where(silenced_at: @domain_block.created_at)
 | 
			
		||||
      scope.where(silenced_at: [@domain_block.created_at, nil])
 | 
			
		||||
    else
 | 
			
		||||
      scope.where(suspended_at: @domain_block.created_at)
 | 
			
		||||
      scope.where(suspended_at: [@domain_block.created_at, nil])
 | 
			
		||||
    end
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue