From 2a81da955b3bc36d938581af5ab2e9d3511ed2c3 Mon Sep 17 00:00:00 2001 From: Bohdan Horbeshko Date: Thu, 14 Aug 2025 07:36:58 -0400 Subject: [PATCH] Show mentions with @ for noticeability --- telegram/formatter/formatter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telegram/formatter/formatter.go b/telegram/formatter/formatter.go index 72337bb..2c06ac4 100644 --- a/telegram/formatter/formatter.go +++ b/telegram/formatter/formatter.go @@ -194,7 +194,7 @@ func mentionBraces(entity *client.TextEntity, nickname string) []*insertion { return []*insertion{ &insertion{ Offset: entity.Offset, - Runes: []rune(nickname), + Runes: []rune("@" + nickname), Type: insertionOpening, Replacing: true, },