Removing debug, saving successfully delivered mentions

This commit is contained in:
Dan 2026-01-12 09:26:10 +00:00
parent d6a9519146
commit 9878573fe1
4 changed files with 4 additions and 121 deletions

View file

@ -69,9 +69,9 @@ jq -c '.[]' "$WEBMENTIONS_FILE" | while read -r mention; do
-d "{\"auth\":\"$API_KEY\",\"source\":\"$source\",\"target\":\"$target\"}")
http_code=$(echo "$response" | tail -n1)
# If successful, add to cache
if [ "$http_code" = "200" ] || [ "$http_code" = "202" ]; then
# If successful (200, 201, or 202), add to cache
if [ "$http_code" = "200" ] || [ "$http_code" = "201" ] || [ "$http_code" = "202" ]; then
echo "$key" >> "$SENT_CACHE"
echo "✓ Sent successfully"
else