From 05372cd453eeec2db05e7b72b9bee022dbc2f5c2 Mon Sep 17 00:00:00 2001 From: Levi <57452819+l3v11@users.noreply.github.com> Date: Sun, 14 Aug 2022 19:17:05 +0600 Subject: [PATCH] Fix AppDrive domain issue --- bot/helper/ext_utils/bot_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):