From 02a5fb992871e8565f597d65f92e36dad462863a Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 8 Nov 2025 12:30:15 +0100 Subject: [PATCH] Fixed raw JQ --- alexa_remote_control.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alexa_remote_control.sh b/alexa_remote_control.sh index 1faea0a..fb9ce83 100755 --- a/alexa_remote_control.sh +++ b/alexa_remote_control.sh @@ -574,7 +574,7 @@ check_status() case $AUTHSTATUS in 200) - MEDIAOWNERCUSTOMERID=$(${CURL} ${OPTS} -s -b ${COOKIE} -A "${BROWSER}" -H "DNT: 1" -H "Connection: keep-alive" -L https://${ALEXA}/api/users/me | ${JQ} '.id') + MEDIAOWNERCUSTOMERID=$(${CURL} ${OPTS} -s -b ${COOKIE} -A "${BROWSER}" -H "DNT: 1" -H "Connection: keep-alive" -L https://${ALEXA}/api/users/me | ${JQ} -r '.id') return 1 ;; 401|403)