diff --git a/bot/helper/ext_utils/bot_utils.py b/bot/helper/ext_utils/bot_utils.py index fcae93f8..6de99570 100644 --- a/bot/helper/ext_utils/bot_utils.py +++ b/bot/helper/ext_utils/bot_utils.py @@ -138,7 +138,7 @@ def is_gdrive_link(url: str): return "drive.google.com" in url def is_appdrive_link(url: str): - url = re.match(r'https?://appdrive\.in/\S+', url) + url = re.match(r'https?://appdrive\.\S+', url) return bool(url) def is_gdtot_link(url: str):