From 8416ca9855cc0c79bd31df3bf080ac5d0333c6ad Mon Sep 17 00:00:00 2001 From: im-not-the-only-one <76635123+im-not-the-only-one@users.noreply.github.com> Date: Sat, 26 Dec 2020 20:08:33 -0500 Subject: [PATCH] fix image url not matching some unicode char MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The current regular expression for image URL matching (`' href="//d.facdn.net/art/.\+">Download'`) will not match URLs that contain certain Unicode characters (e.g., `Download`). I'm not sure if this is a `grep` issue, but changing the expression to match all non-quote characters (`' href="//d.facdn.net/art/[^"]\+">Download'`) will fix this issue. --- furaffinity-dl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/furaffinity-dl b/furaffinity-dl index e80d3ee..ad843bb 100755 --- a/furaffinity-dl +++ b/furaffinity-dl @@ -150,7 +150,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 - image_url="$prefix$(grep --only-matching --max-count=1 ' href="//d.facdn.net/art/.\+">Download' "$tempfile" | cut -d '"' -f 2)" + 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)"