From 11f224221b871ce7e3d66bcbf0850120e2bd2fee Mon Sep 17 00:00:00 2001 From: Markus Koch Date: Mon, 27 Nov 2017 18:44:19 +0100 Subject: [PATCH] Don't add http: before image URLs anymore --- updateWallpaper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updateWallpaper.sh b/updateWallpaper.sh index f426157..e63b0c8 100755 --- a/updateWallpaper.sh +++ b/updateWallpaper.sh @@ -70,7 +70,7 @@ while [ 0 ]; do url=`echo $json | jq -r '.[0].file_url'` ext=`echo $url | sed "s/.*\.//g"` - url="http:$url" + url="$url" local_url="$picdir/$id.$ext" echo "Updating wallpaper to $id..."