change version

This commit is contained in:
Davidson Gomes
2024-10-03 14:23:10 -03:00
parent f16e9bc60f
commit 182c5fc25e
3 changed files with 3 additions and 3 deletions

View File

@@ -1180,7 +1180,7 @@ export class BaileysStartupService extends ChannelStartupService {
const contactRaw: { remoteJid: string; pushName: string; profilePicUrl?: string; instanceId: string } = {
remoteJid: received.key.remoteJid,
pushName: received.key.fromMe ? '' : (received.key.fromMe == null ? '' : received.pushName),
pushName: received.key.fromMe ? '' : received.key.fromMe == null ? '' : received.pushName,
profilePicUrl: (await this.profilePicture(received.key.remoteJid)).profilePictureUrl,
instanceId: this.instanceId,
};