fix: correct syntax in generateMessageID method

This commit is contained in:
Jeferson Ramos
2026-01-14 13:47:14 -03:00
parent e5fab3ef2b
commit 13338df1bc
@@ -1981,7 +1981,7 @@ export class BaileysStartupService extends ChannelStartupService {
} }
public generateMessageID() { public generateMessageID() {
return { return {
id: generateMessageIDV2(this.client.user?.id) id: generateMessageIDV2(this.client.user?.id),
}; };
} }
@@ -2248,7 +2248,7 @@ export class BaileysStartupService extends ChannelStartupService {
mentions, mentions,
linkPreview, linkPreview,
quoted, quoted,
optionsoptions?.messageId ?? null, options?.messageId ?? null,
group?.ephemeralDuration, group?.ephemeralDuration,
// group?.participants, // group?.participants,
); );