fix image url not matching some unicode char

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., `<a class="button standard mobile-fix" href="//d.facdn.net/art/istani/1560251251/1560251251.istani_카르투하검로드3.png">Download</a>`).

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.
This commit is contained in:
im-not-the-only-one 2020-12-26 20:08:33 -05:00 committed by GitHub
parent aa5bb5b406
commit 8416ca9855
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)"