bosh: only advertise support if the module is enabled

updates #1725
This commit is contained in:
JC Brand 2019-09-24 15:38:34 +02:00
parent bce8dc9113
commit 44e5b4c947
3 changed files with 6 additions and 2 deletions

View File

@ -8,6 +8,7 @@
* @description
* Converse.js plugin which add support for XEP-0206: XMPP Over BOSH
*/
import 'strophe.js/src/bosh';
import BrowserStorage from "backbone.browserStorage";
import converse from "./converse-core";
@ -117,6 +118,11 @@ converse.plugins.add('converse-bosh', {
_converse.bosh_session.save({'jid': _converse.jid});
}
});
_converse.api.listen.on('addClientFeatures',
() => _converse.api.disco.own.features.add(Strophe.NS.BOSH)
);
/************************ END Event Handlers ************************/

View File

@ -6,7 +6,6 @@
/**
* @module converse-core
*/
import 'strophe.js/src/bosh';
import 'strophe.js/src/websocket';
import * as strophe from 'strophe.js/src/core';
import Backbone from 'backbone';

View File

@ -246,7 +246,6 @@ converse.plugins.add('converse-disco', {
// See https://xmpp.org/registrar/disco-categories.html
_converse.api.disco.own.identities.add('client', 'web', 'Converse');
_converse.api.disco.own.features.add(Strophe.NS.BOSH);
_converse.api.disco.own.features.add(Strophe.NS.CHATSTATES);
_converse.api.disco.own.features.add(Strophe.NS.DISCO_INFO);
_converse.api.disco.own.features.add(Strophe.NS.ROSTERX); // Limited support