diff --git a/src/aleph/sdk/domain.py b/src/aleph/sdk/domain.py index 525e6cef..79a0c5d4 100644 --- a/src/aleph/sdk/domain.py +++ b/src/aleph/sdk/domain.py @@ -207,7 +207,10 @@ async def check_domain( if entries: if record_type == "txt": for entry in entries: - if hasattr(entry, "text") and entry.text == record_value: + if ( + hasattr(entry, "text") + and str(entry.text).lower() == str(record_value).lower() + ): status[dns_rule.name] = True break elif (