From 54026e827aabc5327cd9bb5325a6af287f56058e Mon Sep 17 00:00:00 2001 From: iequidoo Date: Sat, 8 Nov 2025 03:24:19 -0300 Subject: [PATCH] feat: Error toast for "Not creating securejoin QR for old broadcast" --- src/securejoin.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/securejoin.rs b/src/securejoin.rs index ebf0ea0184..f821b9882e 100644 --- a/src/securejoin.rs +++ b/src/securejoin.rs @@ -112,7 +112,11 @@ pub async fn get_securejoin_qr(context: &Context, chat: Option) -> Resul // If the user created the broadcast before updating Delta Chat, // then the secret will be missing, and the user needs to recreate the broadcast: if load_broadcast_secret(context, chat.id).await?.is_none() { - warn!(context, "Not creating securejoin QR for old broadcast"); + error!( + context, + "Not creating securejoin QR for old broadcast {}, see chat for more info.", + chat.id, + ); let text = BROADCAST_INCOMPATIBILITY_MSG; add_info_msg(context, chat.id, text, time()).await?; bail!(text.to_string());