Fix blocking subdomains of an already-blocked domain (#26392)

This commit is contained in:
Claire 2023-08-09 09:39:36 +02:00
parent 86afbf25d0
commit 6339806f05
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ module Admin
@domain_block.errors.delete(:domain)
render :new
else
if existing_domain_block.present?
if existing_domain_block.present? && existing_domain_block.domain == TagManager.instance.normalize_domain(@domain_block.domain.strip)
@domain_block = existing_domain_block
@domain_block.update(resource_params)
end