From 6034e6db7ff08f832004693b865c2137c53897e0 Mon Sep 17 00:00:00 2001 From: wolfy1339 <4595477+wolfy1339@users.noreply.github.com> Date: Fri, 23 Aug 2024 13:32:27 -0400 Subject: [PATCH] fix: correct usage of `this.events` --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 831147e..8926509 100644 --- a/index.ts +++ b/index.ts @@ -93,7 +93,7 @@ class Client { } onopen() { - this.#logger.info("Connected", this.events.url); + this.#logger.info("Connected", this.#events.url); } onerror(err: ErrorEvent) {