From a2cef243ee661722dff57e5aa816efa372fe66bf Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Fri, 6 Feb 2026 12:20:53 -0600 Subject: [PATCH] Handle discovered ip addresses --- src/websocket_client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/websocket_client.rs b/src/websocket_client.rs index a1182fe..78efba9 100644 --- a/src/websocket_client.rs +++ b/src/websocket_client.rs @@ -365,7 +365,7 @@ impl AgentClient { version: env!("CARGO_PKG_VERSION").to_string(), hostname: self.cached_hostname.clone(), uptime_seconds: get_uptime_seconds(), - ip_address: get_local_ip().unwrap_or_else(|| "unknown".to_string()), + ip_address: get_local_ip().unwrap_or_else(|| "".to_string()), }; let binary = heartbeat.encode_to_vec();