From e0623281eb7fcdc1d04c44b4cd3a30dbffc97134 Mon Sep 17 00:00:00 2001 From: ouwou <26526779+ouwou@users.noreply.github.com> Date: Sun, 9 Jul 2023 21:20:36 -0400 Subject: fix typo in heartbeat --- src/remoteauth/remoteauthclient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remoteauth/remoteauthclient.cpp b/src/remoteauth/remoteauthclient.cpp index e2d3cc6..c0a06d9 100644 --- a/src/remoteauth/remoteauthclient.cpp +++ b/src/remoteauth/remoteauthclient.cpp @@ -277,7 +277,7 @@ void RemoteAuthClient::HeartbeatThread() { if (!m_heartbeat_waiter.wait_for(std::chrono::milliseconds(m_heartbeat_msec))) break; nlohmann::json hb; - hb["op"] = "hearbeat"; + hb["op"] = "heartbeat"; m_ws.Send(hb); } } -- cgit v1.2.3