From 7c7399919b39637f4ea346c0cb4fa50c614a235e Mon Sep 17 00:00:00 2001 From: Astu04 Date: Tue, 19 Mar 2024 11:56:22 +0100 Subject: [PATCH] fix typo on rdm config --- custom/ATVServices.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/ATVServices.sh b/custom/ATVServices.sh index 8431976..cf1f0e2 100644 --- a/custom/ATVServices.sh +++ b/custom/ATVServices.sh @@ -441,7 +441,7 @@ if result=$(check_mitmpkg); then for i in $pids; do /data/adb/magisk/busybox chrt -r -p 99 $i & done fi - if [ -n "$rdm_user" ] && [ -n "$rdm_password" ] && [ -n "$rdm_backend" ]; then # In case rdm variables are confiugred + if [ -n "$rdm_user" ] && [ -n "$rdm_password" ] && [ -n "$rdm_backendURL" ]; then # In case rdm variables are confiugred log -p i -t eMagiskATVService "Started rdm health check!" response=$(curl -s -w "%{http_code}" --cacert "$cacert_path" -u "$rdm_user":"$rdm_password" "$rdm_backendURL/api/get_data?show_devices=true&formatted=false") statusCode=$(echo "$response" | tail -c 4)