mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-20 19:19:24 -06:00
fix: send message to group without no cache (local or redis)
This commit is contained in:
parent
7b41d333d7
commit
2037e78045
@ -1840,7 +1840,7 @@ export class BaileysStartupService extends ChannelStartupService {
|
|||||||
throw new BadRequestException(isWA);
|
throw new BadRequestException(isWA);
|
||||||
}
|
}
|
||||||
|
|
||||||
const sender = isWA.jid;
|
const sender = isWA.jid.toLowerCase();
|
||||||
|
|
||||||
this.logger.verbose(`Sending message to ${sender}`);
|
this.logger.verbose(`Sending message to ${sender}`);
|
||||||
|
|
||||||
@ -3290,10 +3290,10 @@ export class BaileysStartupService extends ChannelStartupService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private async getGroupMetadataCache(groupJid: string) {
|
private getGroupMetadataCache = async (groupJid: string) => {
|
||||||
if (!isJidGroup(groupJid)) return null;
|
if (!isJidGroup(groupJid)) return null;
|
||||||
|
|
||||||
const cacheConf = configService.get<CacheConf>('CACHE');
|
const cacheConf = this.configService.get<CacheConf>('CACHE');
|
||||||
|
|
||||||
if ((cacheConf?.REDIS?.ENABLED && cacheConf?.REDIS?.URI !== '') || cacheConf?.LOCAL?.ENABLED) {
|
if ((cacheConf?.REDIS?.ENABLED && cacheConf?.REDIS?.URI !== '') || cacheConf?.LOCAL?.ENABLED) {
|
||||||
if (await groupMetadataCache?.has(groupJid)) {
|
if (await groupMetadataCache?.has(groupJid)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user