diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/helpers/autoreject_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/autoreject_helper.rb b/app/helpers/autoreject_helper.rb index 3ddbad63d..6f010ca96 100644 --- a/app/helpers/autoreject_helper.rb +++ b/app/helpers/autoreject_helper.rb @@ -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 |