merge #6760: [boosty] support 'file' post attachments (#2387)

https://github.com/mikf/gallery-dl/issues/2387#issuecomment-2564671646
This commit is contained in:
Mike Fährmann
2025-01-03 15:59:03 +01:00

View File

@@ -124,6 +124,9 @@ class BoostyExtractor(Extractor):
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)