clarify rejected announces correctly (but even more correctly with the right json object)

staging
multiple creatures 2019-07-24 20:04:29 -05:00
parent cf28bbd9fa
commit bf27f256c5
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ module AutorejectHelper
domain = uri.scan(/[\w\-]+\.[\w\-]+(?:\.[\w\-]+)*/).first
blocks = DomainBlock.suspend
reason = ((@object && @object['type'] == 'Announce') ? :domain_boosted : :domain)
reason = ((@json && @json['type'] == 'Announce') ? :domain_boost : :domain)
return reason if blocks.where(domain: domain).or(blocks.where('domain LIKE ?', "%.#{domain}")).exists?
return unless @json || @object