Auto-fix clippy::collapsible_if violations (#36428)
Release Notes: - N/A
This commit is contained in:
parent
9e8ec72bd5
commit
8f567383e4
281 changed files with 6628 additions and 7089 deletions
|
@ -240,10 +240,10 @@ impl MessageContent {
|
|||
|
||||
impl From<Vec<MessagePart>> for MessageContent {
|
||||
fn from(parts: Vec<MessagePart>) -> Self {
|
||||
if parts.len() == 1 {
|
||||
if let MessagePart::Text { text } = &parts[0] {
|
||||
return Self::Plain(text.clone());
|
||||
}
|
||||
if parts.len() == 1
|
||||
&& let MessagePart::Text { text } = &parts[0]
|
||||
{
|
||||
return Self::Plain(text.clone());
|
||||
}
|
||||
Self::Multipart(parts)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue