Skip to content

Commit

Permalink
merge #6760: [boosty] support 'file' post attachments (#2387)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Jan 3, 2025
2 parents bce9be6 + ea65947 commit 1dcb40b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gallery_dl/extractor/boosty.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@ def _process_post(self, post):
elif type == "audio_file":
files.append(self._update_url(post, block))

elif type == "file":
files.append(self._update_url(post, block))

else:
self.log.debug("%s: Unsupported data type '%s'",
post["int_id"], type)
Expand Down

0 comments on commit 1dcb40b

Please sign in to comment.