diff --git a/apps/web-crawl-q-and-a/web-qa.py b/apps/web-crawl-q-and-a/web-qa.py index 0feb3825..2be2a604 100644 --- a/apps/web-crawl-q-and-a/web-qa.py +++ b/apps/web-crawl-q-and-a/web-qa.py @@ -87,7 +87,11 @@ def get_domain_hyperlinks(local_domain, url): else: if link.startswith("/"): link = link[1:] - elif link.startswith("#") or link.startswith("mailto:"): + elif ( + link.startswith("#") + or link.startswith("mailto:") + or link.startswith("tel:") + ): continue clean_link = "https://" + local_domain + "/" + link