From d92ff391bb27d0122332f46d91e66e8fa33a38c6 Mon Sep 17 00:00:00 2001 From: bavoco Date: Tue, 13 Feb 2024 09:22:23 +0100 Subject: [PATCH] fix: wrong file dynamicaly imported This may have been missed in db116d1c43f858fe3ba5027140556a7ccd0feaf8 --- application.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application.ts b/application.ts index 034c39e7..9800345c 100644 --- a/application.ts +++ b/application.ts @@ -630,7 +630,7 @@ export class Application> if (!DefaultServerCtor) { const { Server } = await (isNode() ? import("./http_server_node.ts") - : import("./http_server_node.ts")); + : import("./http_server_native.ts")); DefaultServerCtor = Server as ServerConstructor; } this.#serverConstructor = DefaultServerCtor;