From c284794ac247eeb7054d9e6d877dd87c0b761e33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kl=C3=A4hn?= Date: Sun, 10 Nov 2024 13:33:40 +0100 Subject: [PATCH] double newline --- src/chat.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chat.rs b/src/chat.rs index d18876d39..5f3bb6947 100644 --- a/src/chat.rs +++ b/src/chat.rs @@ -1304,7 +1304,7 @@ impl ChatId { } if !encr_info.no_preference.is_empty() { if !ret.is_empty() { - ret.push('\n'); + ret.push_str("\n\n"); } ret += &stock_str::e2e_available(context).await; ret.push_str(":\n"); @@ -1312,7 +1312,7 @@ impl ChatId { } if !encr_info.mutual.is_empty() { if !ret.is_empty() { - ret.push('\n'); + ret.push_str("\n\n"); } ret += &stock_str::e2e_preferred(context).await; ret.push_str(":\n");