Skip to content

Commit 373268c

Browse files
committed
fix: send message to group without no cache (local or redis)
1 parent fcc26f9 commit 373268c

File tree

3 files changed

+4
-15
lines changed

3 files changed

+4
-15
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
* Chatwoot verbose logs
2323
* Adjusts on prisma connections
2424
* License terms updated
25+
* fixed send message to group without no cache (local or redis)
2526

2627
# 2.1.1 (2024-09-22 10:31)
2728

package.json

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -59,21 +59,16 @@
5959
"class-validator": "^0.14.1",
6060
"compression": "^1.7.4",
6161
"cors": "^2.8.5",
62-
"cross-env": "^7.0.3",
6362
"dayjs": "^1.11.7",
6463
"dotenv": "^16.4.5",
6564
"eventemitter2": "^6.4.9",
66-
"exiftool-vendored": "^22.0.0",
6765
"express": "^4.18.2",
6866
"express-async-errors": "^3.1.1",
6967
"fluent-ffmpeg": "^2.1.2",
7068
"form-data": "^4.0.0",
71-
"hbs": "^4.2.0",
7269
"https-proxy-agent": "^7.0.2",
7370
"i18next": "^23.7.19",
7471
"jimp": "^0.16.13",
75-
"join": "^3.0.0",
76-
"js-yaml": "^4.1.0",
7772
"json-schema": "^0.4.0",
7873
"jsonschema": "^1.4.1",
7974
"link-preview-js": "^3.0.4",
@@ -83,9 +78,7 @@
8378
"multer": "^1.4.5-lts.1",
8479
"node-cache": "^5.1.2",
8580
"node-cron": "^3.0.3",
86-
"node-windows": "^1.0.0-beta.8",
8781
"openai": "^4.52.7",
88-
"parse-bmfont-xml": "^1.1.4",
8982
"pg": "^8.11.3",
9083
"pino": "^8.11.0",
9184
"prisma": "^5.15.0",
@@ -94,22 +87,17 @@
9487
"redis": "^4.6.5",
9588
"sharp": "^0.32.2",
9689
"socket.io": "^4.7.1",
97-
"socks-proxy-agent": "^8.0.1",
9890
"tsup": "^8.2.4",
99-
"uuid": "^9.0.0",
100-
"xml2js": "^0.6.2",
101-
"yamljs": "^0.3.0"
91+
"uuid": "^9.0.0"
10292
},
10393
"devDependencies": {
10494
"@types/compression": "^1.7.2",
10595
"@types/cors": "^2.8.13",
10696
"@types/express": "^4.17.17",
107-
"@types/js-yaml": "^4.0.5",
10897
"@types/json-schema": "^7.0.15",
10998
"@types/mime": "3.0.0",
11099
"@types/node": "^18.15.11",
111100
"@types/node-cron": "^3.0.11",
112-
"@types/node-windows": "^0.1.2",
113101
"@types/qrcode": "^1.5.0",
114102
"@types/qrcode-terminal": "^0.12.0",
115103
"@types/uuid": "^8.3.4",

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1678,7 +1678,7 @@ export class BaileysStartupService extends ChannelStartupService {
16781678
// participants?: GroupParticipant[],
16791679
) {
16801680
sender = sender.toLowerCase();
1681-
1681+
16821682
const option: any = {
16831683
quoted,
16841684
};
@@ -3332,7 +3332,7 @@ export class BaileysStartupService extends ChannelStartupService {
33323332
}
33333333

33343334
return await this.findGroup({ groupJid }, 'inner');
3335-
}
3335+
};
33363336

33373337
public async createGroup(create: CreateGroupDto) {
33383338
try {

0 commit comments

Comments
 (0)