1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-21 18:22:30 +01:00

[boosty] support audio files (#2387)

This commit is contained in:
Mike Fährmann 2024-10-04 09:20:25 +02:00
parent 57c30fdc5b
commit 3fa639fc2d
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -115,6 +115,11 @@ class BoostyExtractor(Extractor):
links.append(url)
content.append(url)
elif type == "audio_file":
if post["signedQuery"]:
block["url"] += post["signedQuery"]
files.append(block)
else:
self.log.debug("%s: Unsupported data type '%s'",
post["int_id"], type)