summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorCyberL1 <cyber.hf18@gmail.com>2026-06-26 05:23:41 +0200
committerRory& <root@rory.gay>2026-06-26 16:42:33 +0200
commit5b0002bb736b940718d7b37bc1d1b95e28341613 (patch)
treeaaa1bea76695db7039debd687a6a08038116b430 /src
parentrefactor: change `#` imports into `@spacebar/` imports (diff)
downloadserver-ts-5b0002bb736b940718d7b37bc1d1b95e28341613.tar.xz
chore: remove test console.log
Diffstat (limited to 'src')
-rw-r--r--src/api/Server.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/api/Server.ts b/src/api/Server.ts

index eb108754..84a145e3 100644 --- a/src/api/Server.ts +++ b/src/api/Server.ts
@@ -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) {