From 5eecdb6d80b8808e9990692f3963b4b7bc7f985b Mon Sep 17 00:00:00 2001 From: "Ola [AHLNET]" Date: Fri, 20 Sep 2024 13:14:40 +0200 Subject: [PATCH] gLiveView v1.30.3 (#1824) ## Description Fix peer analysis bug ## Which issue it fixes? closes #1823 --- scripts/cnode-helper-scripts/gLiveView.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/cnode-helper-scripts/gLiveView.sh b/scripts/cnode-helper-scripts/gLiveView.sh index 9881f408c..a2b3d90c3 100755 --- a/scripts/cnode-helper-scripts/gLiveView.sh +++ b/scripts/cnode-helper-scripts/gLiveView.sh @@ -60,7 +60,7 @@ setTheme() { # Do NOT modify code below # ###################################### -GLV_VERSION=v1.30.2 +GLV_VERSION=v1.30.3 PARENT="$(dirname $0)" @@ -623,7 +623,7 @@ checkPeers() { done - IFS=$'\n' read -r -a peersFiltered <<< "$(sort <<<"${peersFiltered[*]}")"; unset IFS + readarray -td '' peersFiltered < <(printf '%s\0' "${peersFiltered[@]}" | sort -z) peerCNT=${#peersFiltered[@]}