From 38d61986284f0fe568e78f7e673f003050a0d8ac Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 19 Apr 2023 00:28:33 -0400 Subject: [PATCH] *Change core.appServerStarted to core.appServer.started --- src/modules/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/app.ts b/src/modules/app.ts index 18e19e8..5b55c8d 100644 --- a/src/modules/app.ts +++ b/src/modules/app.ts @@ -20,7 +20,7 @@ export async function start() { await app.listen({ port: config.uint("core.appport"), host: "0.0.0.0" }); - getPluginAPI().emit("core.appServerStarted"); + getPluginAPI().emit("core.appServer.started"); } export function get(): FastifyInstance {