From 24ba96f6b23b0fd743ce9866a330ddc756029203 Mon Sep 17 00:00:00 2001 From: Hocuri Date: Fri, 17 Apr 2020 09:58:54 +0200 Subject: [PATCH] Make the extended (with display name) address look nicer --- src/dc_receive_imf.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dc_receive_imf.rs b/src/dc_receive_imf.rs index 82229a165..696165d25 100644 --- a/src/dc_receive_imf.rs +++ b/src/dc_receive_imf.rs @@ -1738,7 +1738,7 @@ fn add_or_lookup_contact_by_addr( // addr is not the address of the actual sender but the one of the mailing list. // Add the display name to the addr to make it distinguishable from other people // who sent to the same mailing list. - *addr.to_mut() = format!("{}-{}", display_name_normalized, addr); + *addr.to_mut() = format!("{} – {}", display_name_normalized, addr); } }