change image_url to url.

This commit is contained in:
D5k H3h
2023-05-01 10:52:45 +02:00
committed by GitHub
parent c3d7613e89
commit 9fe4f0a436
+2 -2
View File
@@ -16,8 +16,8 @@ title=$(echo "$item" | jq -r '.title')
url=$(echo "$item" | jq -r '.url')
# Make sure to stop if the RSS-Bridge is offline or the extraction failed
if [ -z "$image_url" ]; then
echo "Image URL is empty, exiting script"
if [ -z "$url" ]; then
echo "URL is empty, exiting script"
exit 1
fi