From 3fa639fc2d7faea694d741c74dd955f73415cd84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Fri, 4 Oct 2024 09:20:25 +0200 Subject: [PATCH] [boosty] support audio files (#2387) --- gallery_dl/extractor/boosty.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gallery_dl/extractor/boosty.py b/gallery_dl/extractor/boosty.py index 6ecfb922..43fad27e 100644 --- a/gallery_dl/extractor/boosty.py +++ b/gallery_dl/extractor/boosty.py @@ -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)