From ad0404a0776618493faeaf80c368295562e1a569 Mon Sep 17 00:00:00 2001 From: "Sergey \"Shnatsel\" Davidoff" Date: Sun, 4 Apr 2021 10:33:50 +0200 Subject: [PATCH] Update to work with new CDN domain FA has changed from d.fadcn.net to d.furaffinity.net for content hosting. That change broke the script. This fixed it for me. --- furaffinity-dl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/furaffinity-dl b/furaffinity-dl index ad843bb..d189915 100755 --- a/furaffinity-dl +++ b/furaffinity-dl @@ -26,7 +26,7 @@ Arguments: you can provide a path to a (C)ookie file -p (P)lain file without any additional metadata -r Don't (R)ename files, just give them the same - filename as on facdn + filename as on d.furaffinity.net -n (N)umber of images to download, starting from the most recent submission -d Number of consecutive (D)uplicate files to register @@ -148,9 +148,9 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2 fi # Get the full size image URL. - # This will be a facdn.net link, we will default to HTTPS + # This will be a d.furaffinity.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.furaffinity.net/art/[^"]\+">Download' "$tempfile" | cut -d '"' -f 2)" # Get metadata description="$(grep 'og:description" content="' "$tempfile" | cut -d '"' -f 4)"