This commit is contained in:
Jeferson Ramos
2026-01-14 11:35:01 -03:00
parent 5613dd4ec8
commit 04913a8a3e
@@ -103,6 +103,7 @@ import makeWASocket, {
DisconnectReason,
downloadContentFromMessage,
downloadMediaMessage,
generateMessageIDV2,
generateWAMessageFromContent,
getAggregateVotesInPollMessage,
GetCatalogOptions,
@@ -128,7 +129,6 @@ import makeWASocket, {
WAMessageKey,
WAPresence,
WASocket,
generateMessageIDV2
} from 'baileys';
import { Label } from 'baileys/lib/Types/Label';
import { LabelAssociation } from 'baileys/lib/Types/LabelAssociation';
@@ -1981,9 +1981,8 @@ export class BaileysStartupService extends ChannelStartupService {
}
private async generateMessageID() {
return {
id: generateMessageIDV2(this.client.user?.id)
id: generateMessageIDV2(this.client.user?.id),
};
}