Skip to content

Commit

Permalink
Fix missing json escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
bgandon committed Dec 4, 2024
1 parent 82b17a1 commit 94cd7b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion out
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ if [[ "${show_metadata}" == "true" ]]; then
metadata=$(cat <<EOF
{
"metadata": [
{"name": "url", "value": ${redacted_webhook_url} },
{"name": "url", "value": $(jq -R . <<< "${redacted_webhook_url}") },
{"name": "channel", "value": "${channels}" },
{"name": "username", "value": ${username} },
{"name": "text", "value": ${text_interpolated} },
Expand Down

0 comments on commit 94cd7b5

Please sign in to comment.