iq, jingle_ft: Simplify item counting with Iterator::count().
This commit is contained in:
parent
2571aa7666
commit
f6f6faeb77
3 changed files with 3 additions and 3 deletions
|
|
@ -222,7 +222,7 @@ impl TryFrom<Element> for Iq {
|
|||
return Err(Error::ParseError("Wrong number of children in iq element."));
|
||||
}
|
||||
error_payload = Some(StanzaError::try_from(elem.clone())?);
|
||||
} else if root.children().collect::<Vec<_>>().len() != 2 {
|
||||
} else if root.children().count() != 2 {
|
||||
return Err(Error::ParseError("Wrong number of children in iq element."));
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue