From 53d15a4a33d13126e56ef530c507368d2ffb465f Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Fri, 23 Aug 2024 20:25:58 -0700 Subject: [PATCH] Dont show acks for received messages --- Meshtastic/Views/Messages/ChannelMessageList.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meshtastic/Views/Messages/ChannelMessageList.swift b/Meshtastic/Views/Messages/ChannelMessageList.swift index 5e0bcd04..91a922c9 100644 --- a/Meshtastic/Views/Messages/ChannelMessageList.swift +++ b/Meshtastic/Views/Messages/ChannelMessageList.swift @@ -94,7 +94,7 @@ struct ChannelMessageList: View { Text("Waiting to be acknowledged. . .").font( .caption2) .foregroundColor(.orange) - } else if !isDetectionSensorMessage { + } else if currentUser && !isDetectionSensorMessage { Text("\(ackErrorVal?.display ?? "Empty Ack Error")").fixedSize(horizontal: false, vertical: true) .foregroundStyle(ackErrorVal?.color ?? Color.red) .font(.caption2)