is there a chance to update loqui to send group messages encrypted instead of being sent as plaintext (until S40 support is discontinued by WA)?
About two weeks ago I was informed that group messages sent by my loqui.im are rejected by all group participants that don't support plaintext messages anymore.
Checking the code I found that all group messages are sent as plaintext. The Promise mentioned here is never fulfilled:
function encryptMessage (remoteJid, plaintext) {
return new Promise(function (ready, reject) {
var myJid = account.core.fullJid;
if (axolLocalReg && isNotGroupJid(remoteJid)) {
//
// encryption for single chats only
//
} else {
reject();
}
im\src\scripts\loqui\connectors\coseme.js
I removed the isNotGroupJid() condition but that led to http response code 406.
Any help would be greatly appreciated :)
Hi,
is there a chance to update loqui to send group messages encrypted instead of being sent as plaintext (until S40 support is discontinued by WA)? About two weeks ago I was informed that group messages sent by my loqui.im are rejected by all group participants that don't support plaintext messages anymore.
Checking the code I found that all group messages are sent as plaintext. The Promise mentioned here is never fulfilled:
im\src\scripts\loqui\connectors\coseme.js
I removed the isNotGroupJid() condition but that led to http response code 406. Any help would be greatly appreciated :)