We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fcb818 commit fee50fcCopy full SHA for fee50fc
.github/workflows/api-health.yml
@@ -14,7 +14,7 @@ jobs:
14
run: |
15
echo "Checking YTS API status..."
16
17
- RESPONSE=$(curl -fsS https://yts.mx/api/v2/list_movies.json) || { echo "Curl failed"; exit 1; }
+ RESPONSE=$(curl -fsS https://yts.lt/api/v2/list_movies.json) || { echo "Curl failed"; exit 1; }
18
STATUS=$(echo "$RESPONSE" | jq -e -r '.status') || { echo "Invalid JSON"; echo "$RESPONSE"; exit 1; }
19
if [ "$STATUS" != "ok" ]; then
20
echo "❌ API status is NOT ok"
0 commit comments