From 4f3be2f571973b860d7475245cb0c4d27202b645 Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Thu, 4 Jul 2024 16:50:49 -0400 Subject: [PATCH] Remove leftover split() statement Forgot to remove this from a previous implementation attempt --- gallery_dl/extractor/furaffinity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery_dl/extractor/furaffinity.py b/gallery_dl/extractor/furaffinity.py index c956a830..683db0bc 100644 --- a/gallery_dl/extractor/furaffinity.py +++ b/gallery_dl/extractor/furaffinity.py @@ -144,7 +144,7 @@ class FuraffinityExtractor(Extractor): data["thumbnail"] = ( 'https://t.furaffinity.net/' + str(data['id']) + '@600-' + - data['url'].split('/')[-2].split('.')[0] + '.jpg') + data['url'].split('/')[-2] + '.jpg') return data