From 8cd425d0f6e40c309c4780f308ee0a53a3455780 Mon Sep 17 00:00:00 2001 From: "Andrey Ivanov (NetMoose)" Date: Mon, 28 Mar 2022 08:55:35 +0500 Subject: [PATCH] Add IV link for send to Telegram --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index d8e172b..354cb32 100644 --- a/main.go +++ b/main.go @@ -178,7 +178,7 @@ func (config Config) RunSend() { bot.Debug = config.Telegram.SendDebug s := "" + string(v.Title) + "\n" + html.UnescapeString(string(v.Description)) + - "\n" + v.Link + "\nhttps://t.me/iv?url=" + v.Link + "&rhash=da76512d0ff2a2" msg := tgbotapi.NewMessage(config.Telegram.ChatId, s) msg.ParseMode = "Html" _, err = bot.Send(msg)