From cbcae93a8bd0a3e3af8c714e85bcda8f6b3c9843 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sun, 9 Nov 2025 21:19:50 -0500 Subject: [PATCH] feat: update domain connect request to send empty username and access token for compatibility --- src/OverteClient.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/OverteClient.cpp b/src/OverteClient.cpp index 8871df6..cfaaec5 100644 --- a/src/OverteClient.cpp +++ b/src/OverteClient.cpp @@ -1188,10 +1188,11 @@ void OverteClient::sendDomainConnectRequest() { // 15. Username signature (QString) - empty (no keypair authentication) qs.writeQString(""); - // 16. Domain username (QString) - empty for now - // 17. Domain access token (QString) - empty for now - // These are optional and only sent if domain account manager is configured - // We'll skip them for now (Overte clients only send if hasDomainAccountManager) + // 16. Domain username (QString) - send empty for compatibility + qs.writeQString(""); + + // 17. Domain access token:refreshToken (QString) - send empty for compatibility + qs.writeQString(""); // Append payload to packet if (!qs.buf.empty()) packet.write(qs.buf.data(), qs.buf.size());