From 56cf2e65961832e805b5f4886ce2859aa11cb4b8 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sat, 13 Nov 2021 22:44:52 +0000 Subject: [PATCH] Replace error! on verification failure with warn! A message is added into 1:1 chat anyway, and user does not know what `StockMessage::ContactNotVerified` means. --- src/securejoin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/securejoin.rs b/src/securejoin.rs index ef7929966..1910d96eb 100644 --- a/src/securejoin.rs +++ b/src/securejoin.rs @@ -873,7 +873,7 @@ async fn could_not_establish_secure_connection( ) .await; chat::add_info_msg(context, chat_id, &msg, time()).await?; - error!( + warn!( context, "StockMessage::ContactNotVerified posted to 1:1 chat ({})", details );