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 Xavier Del Campo Romero
parent 8981c8d29f
commit 7c071f7478
Signed by: xavi
GPG Key ID: 84FF3612A9BF43F2

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;
}