From 51d2dc2b478488ae1a2d7c5399fa8380b26e8f84 Mon Sep 17 00:00:00 2001 From: Dawn India Date: Wed, 27 Mar 2024 19:24:02 +0530 Subject: [PATCH] Minor fix Fixed GDrive alt link. --- 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 37492a158628..cf11fe47e92e 100644 --- a/bot/helper/ext_utils/bot_utils.py +++ b/bot/helper/ext_utils/bot_utils.py @@ -268,7 +268,7 @@ def is_url(url): def is_gdrive_link(url): - return "drive.google.com" in url + return "drive.google.com" in url or "drive.usercontent.google.com" in url def is_telegram_link(url):