change changelog file

This commit is contained in:
Davidson Gomes 2023-07-05 20:16:39 -03:00
parent 153695288e
commit 37397c7a69

View File

@ -1425,15 +1425,15 @@ export class WAStartupService {
const message: proto.IMessage = {}; const message: proto.IMessage = {};
const vcard = (contact: ContactMessage) => { const vcard = (contact: ContactMessage) => {
const result = return (
'BEGIN:VCARD\n' + 'BEGIN:VCARD\n' +
'VERSION:3.0\n' + 'VERSION:3.0\n' +
`FN:${contact.fullName}\n` + `FN:${contact.fullName}\n` +
`ORG:${contact.organization};\n` + `ORG:${contact.organization};\n` +
`TEL;type=CELL;type=VOICE;waid=${contact.wuid}:${contact.wuid}\n` + `item1.TEL;waid=${contact.wuid}:${contact.phoneNumber}\n` +
'END:VCARD'; 'item1.X-ABLabel:Celular\n' +
'END:VCARD'
return result; );
}; };
if (data.contactMessage.length === 1) { if (data.contactMessage.length === 1) {