xmpp-parsers/bookmarks2: Bump XEP-0402 version in DOAP and ChangeLog.
This commit is contained in:
parent
dffaf482bf
commit
5d48386ade
3 changed files with 5 additions and 1 deletions
|
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue