Tying some loose ends

This commit is contained in:
JC Brand 2018-01-22 09:53:35 +01:00
parent 4c76370819
commit 12af9d5cbd
3 changed files with 4 additions and 6 deletions

View File

@ -373,7 +373,7 @@
// Module-level functions
// ----------------------
this.generateResource = () => `/converse.js-${Math.floor(Math.random()*139749825).toString()}`;
this.generateResource = () => `/converse.js-${Math.floor(Math.random()*139749528).toString()}`;
this.sendCSI = function (stat) {
/* Send out a Chat Status Notification (XEP-0352)

View File

@ -84,10 +84,8 @@
const messages = [];
const message_handler = _converse.connection.addHandler(function (message) {
if (options.groupchat) {
if (message.getAttribute('from') !== options['with']) { // eslint-disable-line dot-notation
return true;
}
if (options.groupchat || message.getAttribute('from') !== options['with']) { // eslint-disable-line dot-notation
return true;
}
const result = message.querySelector('result');
if (!_.isNull(result) && result.getAttribute('queryid') === queryid) {

View File

@ -334,7 +334,7 @@
return;
}
form.querySelector('input[type=submit]').classList.add('hidden');
this.fetchRegistrationForm(domain);
this.fetchRegistrationForm(domain.trim());
},
fetchRegistrationForm (domain_name) {