From a545ecc0eba447efd4ce36b3365db3a969606b16 Mon Sep 17 00:00:00 2001 From: altf4arnold Date: Sat, 18 May 2024 02:53:40 +0200 Subject: [PATCH] [FIX] API has changed at the other side. Link taken is not the correct one anymore --- tldtester/sorter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tldtester/sorter.py b/tldtester/sorter.py index 9007de0..cd9a439 100644 --- a/tldtester/sorter.py +++ b/tldtester/sorter.py @@ -157,7 +157,7 @@ def grabber(data, rdaptlds): except: organisation = "Reserved" try: - link = data["links"][2]["href"] + link = data["links"][0]["href"] except Exception as e: print("link not found for " + tld) print(e)