From 7bee8beef3162cbeea11f329a5c95199b4410c75 Mon Sep 17 00:00:00 2001 From: Magnus Boman Date: Mon, 3 Feb 2020 20:29:56 +0100 Subject: [PATCH] Revert to old full URL grepping (#35) It appears the devs at furaffinity can't decide how to do download links They've reverted to the old style, naturally we do the same. --- furaffinity-dl | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/furaffinity-dl b/furaffinity-dl index aea5417..abb197c 100755 --- a/furaffinity-dl +++ b/furaffinity-dl @@ -142,11 +142,7 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2 # Get the full size image URL. # This will be a facdn.net link, we will default to HTTPS # but this can be disabled with -i or --http for specific reasons - if [ $classic = true ]; then - image_url="$prefix$(grep --only-matching --max-count=1 ' href="//d.facdn.net/art/.\+">Download' "$tempfile" | cut -d '"' -f 2)" - else - image_url="$prefix$(grep --only-matching --max-count=1 ' href="//d.facdn.net/download/art/.\+">Download' "$tempfile" | cut -d '"' -f 2)" - fi + image_url="$prefix$(grep --only-matching --max-count=1 ' href="//d.facdn.net/art/.\+">Download' "$tempfile" | cut -d '"' -f 2)" # Get metadata description="$(grep 'og:description" content="' "$tempfile" | cut -d '"' -f 4)"