Fix error when a MX is shared across blocked domains (#17650)

main
Claire 2 years ago committed by GitHub
parent 3d60708508
commit 6aef76b5cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -38,6 +38,8 @@ module Admin
log_action :create, @email_domain_block
(@email_domain_block.other_domains || []).uniq.each do |domain|
next if EmailDomainBlock.where(domain: domain).exists?
other_email_domain_block = EmailDomainBlock.create!(domain: domain, parent: @email_domain_block)
log_action :create, other_email_domain_block
end

Loading…
Cancel
Save