aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--internal/integration/telegrambot/telegrambot.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/integration/telegrambot/telegrambot.go b/internal/integration/telegrambot/telegrambot.go
index d63ef560..e17e4b73 100644
--- a/internal/integration/telegrambot/telegrambot.go
+++ b/internal/integration/telegrambot/telegrambot.go
@@ -11,7 +11,8 @@ import (
func PushEntry(feed *model.Feed, entry *model.Entry, botToken, chatID string, topicID *int64, disableWebPagePreview, disableNotification bool, disableButtons bool) error {
formattedText := fmt.Sprintf(
- `<a href=%q>%s</a>`,
+ `<b>%s</b> - <a href=%q>%s</a>`,
+ feed.Title,
entry.URL,
entry.Title,
)