You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 :)
The text was updated successfully, but these errors were encountered:
janu2015
changed the title
{loqui im} {whats app} {firefox os 2.0} Group messages still send as plaintext / are rejected
{loqui im} {whats app} {firefox os 2.0} Group messages are still send as plaintext / are rejected
May 7, 2017
janu2015
changed the title
{loqui im} {whats app} {firefox os 2.0} Group messages are still send as plaintext / are rejected
{loqui im} {whats app} {firefox os 2.0} Group messages are still sent as plaintext / are rejected
May 7, 2017
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 :)
The text was updated successfully, but these errors were encountered: