From 25c2e36e1442022a9e6c92798963c2ef2b054c01 Mon Sep 17 00:00:00 2001
From: tteckster <tteckster@gmail.com>
Date: Wed, 27 Apr 2022 18:53:21 -0400
Subject: [PATCH] Update heimdalldashboard-install.sh

---
 setup/heimdalldashboard-install.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup/heimdalldashboard-install.sh b/setup/heimdalldashboard-install.sh
index 0fd09c18..39e89beb 100644
--- a/setup/heimdalldashboard-install.sh
+++ b/setup/heimdalldashboard-install.sh
@@ -57,10 +57,10 @@ msg_ok "Network Connected: ${BL}$(hostname -I)"
 msg_info "Checking Internet Status"
 INTER=$(wget -q --tries=10 --timeout=5 --spider https://google.com)
 sleep 2
-if [[ $INTER -eq 0 ]]; then
+if [[ "$INTER" != "0" ]]; then
         msg_ok "Internet Online"
 else
-        echo -e "${CROSS}${RD} Internet Offline"
+        echo -e "${BFR} ${CROSS}${RD} Internet Offline${CL}"
 fi
 
 msg_info "Updating Container OS"