Skip to content

Commit

Permalink
Remove leftover split() statement
Browse files Browse the repository at this point in the history
Forgot to remove this from a previous implementation attempt
  • Loading branch information
theorangesauce committed Jul 4, 2024
1 parent f43bccb commit 4f3be2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gallery_dl/extractor/furaffinity.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def _parse_post(self, post_id):
data["thumbnail"] = (
'https://t.furaffinity.net/' +
str(data['id']) + '@600-' +
data['url'].split('/')[-2].split('.')[0] + '.jpg')
data['url'].split('/')[-2] + '.jpg')

return data

Expand Down

0 comments on commit 4f3be2f

Please sign in to comment.