diff options
author | fiaxh <git@mx.ax.lt> | 2017-09-26 17:01:06 +0200 |
---|---|---|
committer | fiaxh <git@mx.ax.lt> | 2017-09-26 17:01:06 +0200 |
commit | 9d8e1e88ec61403659a8cc410d5c4414e3bd3a96 (patch) | |
tree | 40f1014b7511fd5951035cb706f06d4daa2a42f0 /xmpp-vala/src/module/xep | |
parent | 54a25fd926070a977138cec94908c55806e22f4a (diff) | |
download | dino-9d8e1e88ec61403659a8cc410d5c4414e3bd3a96.tar.gz dino-9d8e1e88ec61403659a8cc410d5c4414e3bd3a96.zip |
http-files: max-file-size handling
Diffstat (limited to 'xmpp-vala/src/module/xep')
-rw-r--r-- | xmpp-vala/src/module/xep/0030_service_discovery/module.vala | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/xmpp-vala/src/module/xep/0030_service_discovery/module.vala b/xmpp-vala/src/module/xep/0030_service_discovery/module.vala index 4d7a3245..011a1f36 100644 --- a/xmpp-vala/src/module/xep/0030_service_discovery/module.vala +++ b/xmpp-vala/src/module/xep/0030_service_discovery/module.vala @@ -71,12 +71,14 @@ public class Module : XmppStreamModule, Iq.Handler { public void on_iq_set(XmppStream stream, Iq.Stanza iq) { } public override void attach(XmppStream stream) { - stream.get_module(Iq.Module.IDENTITY).register_for_namespace(NS_URI_INFO, this); stream.add_flag(new Flag()); + stream.get_module(Iq.Module.IDENTITY).register_for_namespace(NS_URI_INFO, this); add_feature(stream, NS_URI_INFO); } - public override void detach(XmppStream stream) { } + public override void detach(XmppStream stream) { + stream.get_module(Iq.Module.IDENTITY).unregister_from_namespace(NS_URI_INFO, this); + } public static void require(XmppStream stream) { if (stream.get_module(IDENTITY) == null) stream.add_module(new ServiceDiscovery.Module()); |