From 8d481fc2c958e2267b94ce374f2c9e681938eb1a Mon Sep 17 00:00:00 2001 From: Dave Thaler Date: Sun, 13 Oct 2024 16:50:39 -0700 Subject: [PATCH] Fix OrcaHello status column (#155) Fixes #154 Signed-off-by: Dave Thaler --- OrcanodeMonitor/Core/Fetcher.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OrcanodeMonitor/Core/Fetcher.cs b/OrcanodeMonitor/Core/Fetcher.cs index d8dce62..fdb6d2b 100644 --- a/OrcanodeMonitor/Core/Fetcher.cs +++ b/OrcanodeMonitor/Core/Fetcher.cs @@ -258,9 +258,9 @@ public async static Task UpdateOrcaHelloDataAsync(OrcanodeMonitorContext context foreach (var unfoundNode in unfoundList) { Orcanode? oldNode = null; - if (!unfoundNode.OrcasoundName.IsNullOrEmpty()) + if (!unfoundNode.OrcasoundFeedId.IsNullOrEmpty()) { - oldNode = FindOrcanodeByOrcasoundName(foundList, unfoundNode.OrcasoundName); + oldNode = FindOrcanodeByOrcasoundFeedId(foundList, unfoundNode.OrcasoundFeedId); } else if (!unfoundNode.DataplicitySerial.IsNullOrEmpty()) {