Parse conference.password from XEP-0402 bookmarks (#1310)

This commit is contained in:
Teemu Ikonen 2022-11-10 20:23:29 +02:00 committed by GitHub
parent 7a19a25156
commit a2e894dda1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -105,6 +105,7 @@ public class Module : BookmarksProvider, XmppStreamModule {
conference.name = conference_node.get_attribute("name", NS_URI);
conference.autojoin = conference_node.get_attribute_bool("autojoin", false, NS_URI);
conference.nick = conference_node.get_deep_string_content("nick");
conference.password = conference_node.get_deep_string_content("password");
return conference;
}