From 8cbdf52ae73f72152cbdf151738da7377bd91f11 Mon Sep 17 00:00:00 2001 From: Jacob Schmidt Date: Sat, 6 Jun 2026 16:11:18 -0500 Subject: [PATCH] Update service_status to handle both Icom and Arma service kinds --- bin/host/src-tauri/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/host/src-tauri/src/main.rs b/bin/host/src-tauri/src/main.rs index 065a16a..b51f01b 100644 --- a/bin/host/src-tauri/src/main.rs +++ b/bin/host/src-tauri/src/main.rs @@ -756,7 +756,7 @@ fn service_status( }; let pid = slot.as_ref().map(|managed| managed.child.id()); - let (healthy, ping_ms) = if matches!(kind, ServiceKind::Icom) { + let (healthy, ping_ms) = if matches!(kind, ServiceKind::Icom | ServiceKind::Arma) { if running { (true, Some(0)) } else {