Merge pull request #1 from Kirusenn/cookieBug

Fixed bug of calling wrong address
This commit is contained in:
Christopher Nielson 2017-04-11 17:04:54 -06:00 committed by GitHub
commit 578b720eae
2 changed files with 5 additions and 2 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
*.swp

View file

@ -75,11 +75,12 @@ https://github.com/Shnatsel/furaffinity-dl/issues" >&2
echo "WARNING: $page seems to be inaccessible, skipping."
continue
fi
# Get the full size image URL.
# This will be a facdn.net link, we have to use HTTP
# to get around DPI-based page blocking in some countries.
image_url='http:'$(grep -E --max-count=1 --only-matching '"[^"]+">Download[[:space:]]?</a>' "$tempfile" | cut -d '"' -f 2)
#image_url='http:'$(grep -E --max-count=1 --only-matching '"[^"]+">Download[[:space:]]?</a>' "$tempfile" | cut -d '"' -f 1)
image_url='http:'$(grep -E --max-count=1 --only-matching '<a href="//d.facdn.net[^"]+"[[:space:]]{1}' "$tempfile" | cut -d '"' -f 2)
# TODO: Get the submission title out of the page
# this trick may come in handy for avoiding slashes in filenames: