diff --git a/feeds/ucentral/usteer/files/usr/libexec/uchannel.uc b/feeds/ucentral/usteer/files/usr/libexec/uchannel.uc index 8bae8b47b..029b0974a 100755 --- a/feeds/ucentral/usteer/files/usr/libexec/uchannel.uc +++ b/feeds/ucentral/usteer/files/usr/libexec/uchannel.uc @@ -258,8 +258,8 @@ function channel_balance(band, mask) { function youngest() { for (let ip, host in hosts) { - if (host.host_info.status == "overlap" && - host.host_info.uptime < uptime) { + if (host.host_info?.status == "overlap" && + host.host_info?.uptime < uptime) { print("Found a younger host\n"); return 1; }