From ca20300809dcbd5ef76fb120b7aa7b729e4dcd1a Mon Sep 17 00:00:00 2001 From: MK Date: Tue, 3 Dec 2024 10:36:38 +0100 Subject: [PATCH] =?UTF-8?q?fix=20f=C3=BChrende=20Null?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vpn_monitor.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/vpn_monitor.sh b/vpn_monitor.sh index 5b386ef..4af81e0 100644 --- a/vpn_monitor.sh +++ b/vpn_monitor.sh @@ -10,6 +10,7 @@ source "$BASE_DIR/functions/restart_service.sh" function is_within_business_hours() { current_hour=$(date +%H) + current_hour=$((10#$current_hour)) if (( current_hour >= 7 && current_hour < 18 )); then return 0 # True else