Skip to content

Commit 182c5fc

Browse files
committed
change version
1 parent f16e9bc commit 182c5fc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM node:20-alpine AS builder
33
RUN apk update && \
44
apk add git ffmpeg wget curl bash
55

6-
LABEL version="2.1.1" description="Api to control whatsapp features through http requests."
6+
LABEL version="2.1.2" description="Api to control whatsapp features through http requests."
77
LABEL maintainer="Davidson Gomes" git="https://github.com/DavidsonGomes"
88
LABEL contact="contato@atendai.com"
99

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "evolution-api",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "Rest api for communication with WhatsApp",
55
"main": "./dist/main.js",
66
"type": "commonjs",

src/api/integrations/channel/whatsapp/whatsapp.baileys.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1180,7 +1180,7 @@ export class BaileysStartupService extends ChannelStartupService {
11801180

11811181
const contactRaw: { remoteJid: string; pushName: string; profilePicUrl?: string; instanceId: string } = {
11821182
remoteJid: received.key.remoteJid,
1183-
pushName: received.key.fromMe ? '' : (received.key.fromMe == null ? '' : received.pushName),
1183+
pushName: received.key.fromMe ? '' : received.key.fromMe == null ? '' : received.pushName,
11841184
profilePicUrl: (await this.profilePicture(received.key.remoteJid)).profilePictureUrl,
11851185
instanceId: this.instanceId,
11861186
};

0 commit comments

Comments
 (0)