chore: remove test console.log

This commit is contained in:
CyberL1
2026-06-26 16:42:33 +02:00
committed by Rory&
parent 8d5995e5c5
commit 5b0002bb73
-1
View File
@@ -192,7 +192,6 @@ export class SpacebarServer extends Server {
// Pickup non-expired polls
const nonExpiredPolls = await Message.createQueryBuilder("message").where("message.poll->>'expiry' > :now", { now: new Date().toISOString() }).getMany();
console.log(nonExpiredPolls);
for (const message of nonExpiredPolls) {
if (!message.poll) {