This commit is contained in:
jaydenfyi 2026-01-25 11:05:55 +08:00
parent a7cf0c660d
commit 938f55e679

View File

@ -280,7 +280,7 @@ export class TwitchClientManager {
const client = await this.getClient(account, cfg, accountId);
// Generate a message ID (Twurple's say() doesn't return the message ID, so we generate one)
const messageId = `${Date.now()}-${Math.random().toString(36).substring(2, 15)}`;
const messageId = crypto.randomUUID();
// Send message (Twurple handles rate limiting)
await client.say(channel, message);