Compare commits

...

8 Commits

Author SHA1 Message Date
Davidson Gomes
0102796769 Merge branch 'release/1.2.1-3' 2023-07-14 19:04:43 -03:00
Davidson Gomes
50b2a72f1b fix: change Baileys fork 2023-07-14 19:04:34 -03:00
Davidson Gomes
04cc239756 Merge tag '1.2.1-2' into develop
v
2023-07-14 19:04:00 -03:00
Davidson Gomes
0c20da2481 Merge branch 'release/1.2.1-2' 2023-07-14 19:03:51 -03:00
Davidson Gomes
72d2a563f3 fix: change Baileys fork 2023-07-14 19:03:41 -03:00
Davidson Gomes
6f3f8c944d Merge tag '1.2.1-1' into develop
* Adjusts in docker files
* Save picture url groups in chatwoot
2023-07-14 18:38:18 -03:00
Davidson Gomes
ed60fd2e82 Merge branch 'release/1.2.1-1' 2023-07-14 18:38:07 -03:00
Davidson Gomes
636fef4693 fix: change Baileys fork 2023-07-14 18:36:44 -03:00
3 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
# 1.2.1 (homolog)
# 1.2.1 (2023-07-14 19:04)
### Fixed

View File

@@ -43,7 +43,7 @@
"@adiwajshing/keyed-db": "^0.2.4",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@hapi/boom": "^10.0.1",
"@whiskeysockets/baileys": "github:vphelipe/WhiskeySockets-Baileys#master",
"@whiskeysockets/baileys": "github:DavidsonGomes/Baileys",
"@figuro/chatwoot-sdk": "^1.1.14",
"axios": "^1.3.5",
"class-validator": "^0.13.2",

View File

@@ -425,7 +425,7 @@ export class ChatwootService {
if (findParticipant) {
await this.updateContact(instance, findParticipant.id, {
name: nameContact,
name: body.pushName,
avatar_url: picture_url.profilePictureUrl || null,
});
} else {
@@ -434,7 +434,7 @@ export class ChatwootService {
body.key.participant.split('@')[0],
filterInbox.id,
isGroup,
nameContact,
body.pushName,
picture_url.profilePictureUrl || null,
);
}