Update libsignal-protocol v1.1.4
// FREEBIE
This commit is contained in:
parent
9ab64ec44d
commit
d11f9fd538
3 changed files with 34 additions and 22 deletions
|
@ -36124,9 +36124,18 @@ SessionCipher.prototype = {
|
|||
|
||||
preKeyMsg.message = message;
|
||||
var result = String.fromCharCode((3 << 4) | 3) + util.toString(preKeyMsg.encode());
|
||||
return {type: 3, body: result};
|
||||
return {
|
||||
type : 3,
|
||||
body : result,
|
||||
registrationId : record.registrationId
|
||||
};
|
||||
|
||||
} else {
|
||||
return {type: 1, body: util.toString(message)};
|
||||
return {
|
||||
type : 1,
|
||||
body : util.toString(message),
|
||||
registrationId : record.registrationId
|
||||
};
|
||||
}
|
||||
});
|
||||
}.bind(this));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue