diff --git a/src/commands/poll.ts b/src/commands/poll.ts index f46911b..40a3eb1 100644 --- a/src/commands/poll.ts +++ b/src/commands/poll.ts @@ -41,7 +41,7 @@ export default class ZeonPoll implements Command { return; } - const pollId = `poll_${Date.now()}`; + const pollId = `${Date.now()}`; polls[pollId] = { question: question.trim(), options: options.map((opt) => opt.trim()),