diff options
author | fiaxh <git@mx.ax.lt> | 2017-06-13 16:04:26 +0200 |
---|---|---|
committer | fiaxh <git@mx.ax.lt> | 2017-06-13 19:51:24 +0200 |
commit | dabc2a8b1d2a7bf2019e5f913c736d80f11ceb53 (patch) | |
tree | c767da379fa8b3da9c17446bfb64bbd945fb9305 /xmpp-vala/src/module/xep/0048_bookmarks | |
parent | e63d59eb3450471b33a22efda6df8871818209b1 (diff) | |
download | dino-dabc2a8b1d2a7bf2019e5f913c736d80f11ceb53.tar.gz dino-dabc2a8b1d2a7bf2019e5f913c736d80f11ceb53.zip |
MUC join behaviour + small MUC error changes
Diffstat (limited to 'xmpp-vala/src/module/xep/0048_bookmarks')
-rw-r--r-- | xmpp-vala/src/module/xep/0048_bookmarks/module.vala | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/xmpp-vala/src/module/xep/0048_bookmarks/module.vala b/xmpp-vala/src/module/xep/0048_bookmarks/module.vala index f2030ff6..3612ac4b 100644 --- a/xmpp-vala/src/module/xep/0048_bookmarks/module.vala +++ b/xmpp-vala/src/module/xep/0048_bookmarks/module.vala @@ -17,7 +17,6 @@ public class Module : XmppStreamModule { Tuple<OnResult, Object?> tuple = o as Tuple<OnResult, Object?>; OnResult on_result = tuple.a; Gee.List<Conference> conferences = get_conferences_from_stanza(node); - stream.get_module(Module.IDENTITY).received_conferences(stream, conferences); on_result(stream, conferences, tuple.b); }, Tuple.create(listener, store)); } |