Added within chat search + updated readme

This commit is contained in:
Adhiraj
2020-07-11 12:25:49 +05:30
parent 5f54a9443c
commit 142a92cc49
5 changed files with 40 additions and 11 deletions

View File

@@ -50,9 +50,7 @@ export default class WAConnectionBase {
protected callbacks = {}
protected encoder = new Encoder()
protected decoder = new Decoder()
/**
* What to do when you need the phone to authenticate the connection (generate QR code by default)
*/
/** What to do when you need the phone to authenticate the connection (generate QR code by default) */
onReadyForPhoneAuthentication = generateQRCode
unexpectedDisconnect = (err) => this.close()
/**

View File

@@ -22,7 +22,7 @@ const decrypt = buffer => {
}
json.messages.forEach ((str, i) => {
const buffer = Buffer.from (str, 'hex')
const buffer = Buffer.from (str, 'base64')
try {
const [tag, json, binaryTags] = decrypt (buffer)
console.log (