Skip to content

Commit

Permalink
Fix OrcaHello status column (#155)
Browse files Browse the repository at this point in the history
Fixes #154

Signed-off-by: Dave Thaler <[email protected]>
  • Loading branch information
dthaler authored Oct 13, 2024
1 parent 163112b commit 8d481fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OrcanodeMonitor/Core/Fetcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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())
{
Expand Down

0 comments on commit 8d481fc

Please sign in to comment.