fix: 修复登录问题

This commit is contained in:
root 2025-07-12 17:35:39 +08:00
parent 7492a50e9a
commit 41363d182e
1 changed files with 1 additions and 1 deletions

View File

@ -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);