From edacfcb8bc5ab05f724e1005e907572c3784b49b Mon Sep 17 00:00:00 2001 From: DarthM Date: Mon, 31 Aug 2026 06:57:19 -0400 Subject: [PATCH] fix: handshake before Discord activity updates --- runtime/src/discord_presence.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runtime/src/discord_presence.cpp b/runtime/src/discord_presence.cpp index 9179b97..a7b9caa 100644 --- a/runtime/src/discord_presence.cpp +++ b/runtime/src/discord_presence.cpp @@ -226,7 +226,8 @@ private: } void SendActivityLocked() { - if (!connected_ && !ConnectLocked()) { + if (!connected_) { + ReconnectAndSendLocked(); return; } if (ActiveClientIdLocked().empty()) {