From 41363d182efcd1797f597bf6b14578f5722df153 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 12 Jul 2025 17:35:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E7=99=BB=E5=BD=95?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/services/nakamaAuth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/nakamaAuth.ts b/src/services/nakamaAuth.ts index 8b6b857..ffe71ff 100644 --- a/src/services/nakamaAuth.ts +++ b/src/services/nakamaAuth.ts @@ -42,7 +42,7 @@ class NakamaAuthService { private readonly SERVER_KEY = 'defaultkey'; // 替换为实际的服务器密钥 private readonly HOST = '43.143.58.201'; // 替换为实际的Nakama服务器地址 private readonly PORT = '7350'; // 替换为实际的端口 - private readonly USE_SSL = true; // 根据实际情况设置 + private readonly USE_SSL = false; // 根据实际情况设置 constructor() { this.client = new Client(this.SERVER_KEY, this.HOST, this.PORT, this.USE_SSL);