From c2988c0b2fc1c350ff01cff371ede7927fd41086 Mon Sep 17 00:00:00 2001 From: j Date: Sun, 20 Aug 2023 21:10:19 +0200 Subject: [PATCH] show link in telegram --- app/item/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/item/tasks.py b/app/item/tasks.py index bf4f7aa..a906307 100644 --- a/app/item/tasks.py +++ b/app/item/tasks.py @@ -41,7 +41,7 @@ def announce_items(): preview_description=description, ) if getattr(settings, "TELEGRAM_ANNOUNCE_CHANNEL"): - message = f'{item.title}' + message = f'{item.title}
{link}' r = telegram_rpc.send( message, channel=settings.TELEGRAM_ANNOUNCE_CHANNEL,