xmpp-parsers/bookmarks2: Bump XEP-0402 version in DOAP and ChangeLog.

This commit is contained in:
Emmanuel Gil Peyrot 2021-01-12 19:35:14 +01:00
commit 5d48386ade
3 changed files with 5 additions and 1 deletions

View file

@ -77,6 +77,7 @@ impl TryFrom<Element> for Conference {
));
}
check_no_children!(child, "nick");
check_no_attributes!(child, "nick");
conference.nick = Some(child.text());
} else if child.is("password", ns::BOOKMARKS2) {
if conference.password.is_some() {
@ -85,6 +86,7 @@ impl TryFrom<Element> for Conference {
));
}
check_no_children!(child, "password");
check_no_attributes!(child, "password");
conference.password = Some(child.text());
}
}