From 82d650c587684cd1115d23792a713fe033d88ce3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=87=8E=E5=A3=B0?= Date: Fri, 27 Sep 2024 11:40:14 +0800 Subject: [PATCH] build: fix build --- src/queue/worker/github.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/queue/worker/github.ts b/src/queue/worker/github.ts index 28a37f0..1b2d36a 100644 --- a/src/queue/worker/github.ts +++ b/src/queue/worker/github.ts @@ -104,7 +104,7 @@ export class GitHubEventWorker extends BaseWorker { async run() { const byId = groupBy( - orderBy(this.queue, 'timestamp', 'asc'), + orderBy(this.queue, ['timestamp'], ['asc']), (v) => v.body.botId, );