diff options
author | fiaxh <git@lightrise.org> | 2019-11-04 15:08:12 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2019-11-04 15:11:36 +0100 |
commit | 247a36815043deb15c19edc536f7b2ec3a2d02c8 (patch) | |
tree | 6f393e9a666664ef702f273721662e516bb4d3e7 /xmpp-vala/src/module/xep/0402_bookmarks2.vala | |
parent | 388cc56674487e7b9e339637369fc55f0e271daf (diff) | |
download | dino-247a36815043deb15c19edc536f7b2ec3a2d02c8.tar.gz dino-247a36815043deb15c19edc536f7b2ec3a2d02c8.zip |
OMEMO: Don't set publish options, configure only bundle node instead
Diffstat (limited to 'xmpp-vala/src/module/xep/0402_bookmarks2.vala')
-rw-r--r-- | xmpp-vala/src/module/xep/0402_bookmarks2.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmpp-vala/src/module/xep/0402_bookmarks2.vala b/xmpp-vala/src/module/xep/0402_bookmarks2.vala index 8394580f..15386398 100644 --- a/xmpp-vala/src/module/xep/0402_bookmarks2.vala +++ b/xmpp-vala/src/module/xep/0402_bookmarks2.vala @@ -42,7 +42,7 @@ public class Module : BookmarksProvider, XmppStreamModule { if (conference.nick != null) { conference_node.put_node((new StanzaNode.build("nick", NS_URI)).put_node(new StanzaNode.text(conference.nick))); } - yield stream.get_module(Pubsub.Module.IDENTITY).publish(stream, stream.get_flag(Bind.Flag.IDENTITY).my_jid.bare_jid, NS_URI, conference.jid.to_string(), conference_node, Xmpp.Xep.Pubsub.ACCESS_MODEL_WHITELIST, 128); + yield stream.get_module(Pubsub.Module.IDENTITY).publish(stream, stream.get_flag(Bind.Flag.IDENTITY).my_jid.bare_jid, NS_URI, conference.jid.to_string(), conference_node, Xmpp.Xep.Pubsub.ACCESS_MODEL_WHITELIST); } public async void replace_conference(XmppStream stream, Conference orig_conference, Conference modified_conference) { |