mirror of
https://github.com/FranP-code/Baileys.git
synced 2025-10-13 00:32:22 +00:00
feat: handle verified name in message
This commit is contained in:
@@ -88,6 +88,12 @@ export const decodeMessageStanza = (stanza: BinaryNode, auth: AuthenticationStat
|
|||||||
let decryptables = 0
|
let decryptables = 0
|
||||||
if(Array.isArray(stanza.content)) {
|
if(Array.isArray(stanza.content)) {
|
||||||
for(const { tag, attrs, content } of stanza.content) {
|
for(const { tag, attrs, content } of stanza.content) {
|
||||||
|
if(tag === 'verified_name' && content instanceof Uint8Array) {
|
||||||
|
const cert = proto.VerifiedNameCertificate.decode(content)
|
||||||
|
const details = proto.VerifiedNameDetails.decode(cert.details)
|
||||||
|
fullMessage.verifiedBizName = details.verifiedName
|
||||||
|
}
|
||||||
|
|
||||||
if(tag !== 'enc') {
|
if(tag !== 'enc') {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user