From dd707e070eb48c07d604ecd72970489d6a9a8a43 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Wed, 9 Jul 2025 12:08:44 -0700 Subject: [PATCH] Update device metadata messaging --- Meshtastic/Views/Settings/Config/ConfigHeader.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Meshtastic/Views/Settings/Config/ConfigHeader.swift b/Meshtastic/Views/Settings/Config/ConfigHeader.swift index d1af3a6a..cb4f7aee 100644 --- a/Meshtastic/Views/Settings/Config/ConfigHeader.swift +++ b/Meshtastic/Views/Settings/Config/ConfigHeader.swift @@ -11,7 +11,7 @@ struct ConfigHeader: View { var body: some View { if node != nil && node?.metadata == nil && node?.num ?? 0 != bleManager.connectedPeripheral?.num ?? 0 { - Text("There has been no response to a request for device metadata over the admin channel for this node.") + Text("There has been no response to a request for device metadata via PKC admin for this node.") .font(.callout) .foregroundColor(.orange) @@ -19,7 +19,7 @@ struct ConfigHeader: View { // Let users know what is going on if they are using remote admin and don't have the config yet let expiration = node?.sessionExpiration ?? Date() if node?[keyPath: config] == nil || expiration < node?.sessionExpiration ?? Date() { - Text("\(title) config data was requested over the admin channel but no response has been returned from the remote node.") + Text("\(title) config data was requested via PKC admin but no response has been returned from the remote node.") .font(.callout) .foregroundColor(.orange) } else {