Revert "Official Hot Fix for QuecManager 2.3.0"

This reverts commit 6bd2c7ea52.
This commit is contained in:
Cameron Thompson
2025-08-27 23:40:17 -04:00
parent 1773301af8
commit 20c2f37452
38 changed files with 203 additions and 4134 deletions

View File

@@ -145,10 +145,10 @@ elif [ -n "$QUERY_STRING" ]; then
# URL parameters for GET requests (for testing)
iccid=$(echo "$QUERY_STRING" | grep -o 'iccid=[^&]*' | cut -d'=' -f2)
paused=$(echo "$QUERY_STRING" | grep -o 'paused=[^&]*' | cut -d'=' -f2)
# URL decode values
iccid=$(echo "$iccid" | sed 's/+/ /g;s/%\(..\)/\\x\1/g;' | xargs -0 printf "%b")
log_message "Using URL parameters: iccid=$iccid, paused=$paused" "debug"
fi