From efbee96151661396f88ff4db29462f8efe9dd7a5 Mon Sep 17 00:00:00 2001 From: Athfan Khaleel Date: Wed, 10 Apr 2024 02:38:38 +0500 Subject: [PATCH] Enable webpage preview for shortened link --- userbot/plugins/www.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userbot/plugins/www.py b/userbot/plugins/www.py index a47ec59..cda4803 100644 --- a/userbot/plugins/www.py +++ b/userbot/plugins/www.py @@ -109,7 +109,7 @@ async def shorten(bot: UserBot, message: Message): txt = "The URL or KEYWORD already exists!" else: txt = shortened - await message.edit(txt, disable_web_page_preview=True) + await message.edit(txt, disable_web_page_preview=False) return else: txt = "Please provide a URL to shorten"