diff --git a/src/chat.rs b/src/chat.rs index 0c5fa9792..115cf9403 100644 --- a/src/chat.rs +++ b/src/chat.rs @@ -2943,7 +2943,10 @@ async fn prepare_send_msg( if chat.typ != Chattype::Single && !context.get_config_bool(Config::Bot).await? { if let Some(quoted_message) = msg.quoted_message(context).await? { if quoted_message.chat_id != chat_id { - bail!("Bad quote reply"); + bail!( + "Quote of message from {} cannot be sent to {chat_id}", + quoted_message.chat_id + ); } } }