mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-22 06:54:29 +00:00
Parse conference.password from XEP-0402 bookmarks (#1310)
This commit is contained in:
parent
7a19a25156
commit
a2e894dda1
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue