From 94efde78cb3db694302de04f78c142d59dbef591 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?FAY=E3=82=B7?= <103030954+FAYStarNext@users.noreply.github.com> Date: Sun, 21 Jul 2024 22:45:43 +0700 Subject: [PATCH] chore: Update package.json version to 1.0.3-indev --- package.json | 2 +- src/structures/Node.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index b32d190..9bf0ba8 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", - "version": "1.0.2-indev", + "version": "1.0.3-indev", "description": "Sunday a lavalink wrapper", "license": "MIT", "scripts": { diff --git a/src/structures/Node.ts b/src/structures/Node.ts index b465728..71bba33 100644 --- a/src/structures/Node.ts +++ b/src/structures/Node.ts @@ -165,7 +165,6 @@ export class Node { "User-Id": this.manager.options.clientId, "Client-Name": this.manager.options.clientName, }; - console.log(headers); if (this.options.version === "v4") { this.socket = new WebSocket(`ws${this.options.secure ? "s" : ""}://${this.address}/v4/websocket`, { headers }); } else {