When receiving DomainChanged: change or add the domain to you domain list.

display
Philippe PITTOLI 2024-04-28 00:25:39 +02:00
parent ea2160b857
commit 67d0ca700f
1 changed files with 4 additions and 1 deletions

View File

@ -407,7 +407,10 @@ handleQuery = case _ of
handleAction $ UpdateMyDomains (my_domains <> [ emptyDomainInfo { name = response.domain } ])
(DNSManager.MkDomainChanged response) -> do
{ my_domains } <- H.get
let new_domains = map (\d -> if d.name == response.domain.name then response.domain else d) my_domains
let replaced_domains = map (\d -> if d.name == response.domain.name then response.domain else d) my_domains
new_domains = if A.elem response.domain replaced_domains
then replaced_domains
else replaced_domains <> [response.domain]
handleAction $ UpdateMyDomains new_domains
(DNSManager.MkDomainDeleted response) -> do
{ my_domains } <- H.get