diff --git a/backend/app/notify/telegram.go b/backend/app/notify/telegram.go
index bc2b129e..08f2c06f 100644
--- a/backend/app/notify/telegram.go
+++ b/backend/app/notify/telegram.go
@@ -81,7 +81,7 @@ func (t *Telegram) Send(ctx context.Context, req request) error {
}
from = "" + from + ""
link := fmt.Sprintf(`comment`, req.comment.Locator.URL+uiNav+req.comment.ID)
- msg := fmt.Sprintf("%s
%s
%s", from, req.comment.Text, link)
+ msg := fmt.Sprintf("%s\n%s\n%s", from, req.comment.Text, link)
u := fmt.Sprintf("%s%s/sendMessage?chat_id=@%s&text=%s&parse_mode=HTML&disable_web_page_preview=true",
t.apiPrefix, t.token, t.channelName, url.QueryEscape(msg))