From 58cb42362e9a1523d682990c6cd011f10f869804 Mon Sep 17 00:00:00 2001 From: Shigma Date: Tue, 18 Jun 2024 01:56:29 +0800 Subject: [PATCH] fix(protocol): fix channel.type category & voice --- packages/protocol/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/protocol/src/index.ts b/packages/protocol/src/index.ts index 959edf44..d1e9c519 100644 --- a/packages/protocol/src/index.ts +++ b/packages/protocol/src/index.ts @@ -178,8 +178,8 @@ export namespace Channel { export const enum Type { TEXT = 0, DIRECT = 1, - VOICE = 2, - CATEGORY = 3, + CATEGORY = 2, + VOICE = 3, } }