fix typo in heartbeat

This commit is contained in:
ouwou
2023-07-09 21:20:36 -04:00
parent cf02c13952
commit e0623281eb

View File

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