or should be and

This commit is contained in:
JC Brand 2018-01-22 10:41:13 +01:00
parent 12af9d5cbd
commit c1322f3c92

View File

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