From 4a17f880c65fd1e35d5e244b27ea7f8746de8ce8 Mon Sep 17 00:00:00 2001 From: doctor_dev Date: Fri, 30 May 2025 16:19:22 +0000 Subject: [PATCH] fixed commenting out the RecognizedURL --- scripts/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/utils.py b/scripts/utils.py index 26b12eb..904b75d 100644 --- a/scripts/utils.py +++ b/scripts/utils.py @@ -112,7 +112,7 @@ def IsURLValid(url: str) -> bool: """ Checks if given URL is valid (RecognizeURLType recognizes it) """ - return #RecognizeURLType(url) != 'invalid' + return RecognizeURLType(url) != 'invalid' def CheckUrl(url):