Solved domain bug

This commit is contained in:
Kevin Veen-Birkenbach 2025-04-15 22:22:09 +02:00
parent c418399807
commit 4b824ecd6c
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E

View File

@ -93,8 +93,6 @@ class LookupModule(LookupBase):
# Check if domain_url is a list. If so, select the first element.
if isinstance(domain_url, list):
domain_url = domain_url[0]
else:
domain_url = ""
# Construct the URL using the domain_url if available.
url = "https://" + domain_url if domain_url else ""