From 2c91b73a605d04609f2840c909a826f3e70061c2 Mon Sep 17 00:00:00 2001 From: chatenium Date: Sat, 11 Apr 2026 17:02:53 +0200 Subject: [PATCH] Fix textChannelService.ts websocket --- src/services/textChannelService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/textChannelService.ts b/src/services/textChannelService.ts index 484b105..9629d50 100644 --- a/src/services/textChannelService.ts +++ b/src/services/textChannelService.ts @@ -263,7 +263,7 @@ export class TextChannelServiceService { */ async joinWebSocketRoom(): Promise { try { - const resp = await this.client.patch("network/channel/joinWebSocketRoom", { + const resp = await this.client.patch("v2/network/channel/joinWebSocketRoom", { networkId: this.networkId, channelId: this.channelId, categoryId: this.categoryId,