From 0e57826c1ba38ecdcac0b4cfdb179909fbc4e093 Mon Sep 17 00:00:00 2001 From: Rory& Date: Sat, 21 Mar 2026 14:52:57 +0100 Subject: [PATCH] lambert-server: Remove unused errorHandler option --- src/api/Server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/Server.ts b/src/api/Server.ts index 6e4db32b7..1e5786ed9 100644 --- a/src/api/Server.ts +++ b/src/api/Server.ts @@ -46,7 +46,7 @@ export class SpacebarServer extends Server { constructor(opts?: Partial) { // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore - super({ ...opts, errorHandler: false }); + super(opts); } async start() {