From bbea52249950eb98a8d3886f2bd7648a7d669bf4 Mon Sep 17 00:00:00 2001 From: TheCatLady <52870424+TheCatLady@users.noreply.github.com> Date: Sat, 20 Feb 2021 10:40:50 -0500 Subject: [PATCH] fix(notif): Remove extra newlines from Telegram notifications (#973) --- server/lib/notifications/agents/telegram.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/lib/notifications/agents/telegram.ts b/server/lib/notifications/agents/telegram.ts index b27b68d5a..9913d35e6 100644 --- a/server/lib/notifications/agents/telegram.ts +++ b/server/lib/notifications/agents/telegram.ts @@ -78,7 +78,7 @@ class TelegramAgent message += `\*Now Available\*`; message += `\n\n\*${title}\*`; if (plot) { - message += `\n${plot}\n\n`; + message += `\n${plot}`; } message += `\n\n\*Requested By\*\n${user}`; message += `\n\n\*Status\*\nAvailable`;