diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-07-09 21:20:36 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-07-09 21:20:36 -0400 |
commit | e0623281eb7fcdc1d04c44b4cd3a30dbffc97134 (patch) | |
tree | ad1f5236d40b296dc7685a56e1c0ba9972a49cb2 | |
parent | cf02c1395271fd6c127fa2ed6557b3aeb279e5fe (diff) | |
download | abaddon-portaudio-e0623281eb7fcdc1d04c44b4cd3a30dbffc97134.tar.gz abaddon-portaudio-e0623281eb7fcdc1d04c44b4cd3a30dbffc97134.zip |
fix typo in heartbeat
-rw-r--r-- | src/remoteauth/remoteauthclient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |