diff --git a/gallery_dl/extractor/cohost.py b/gallery_dl/extractor/cohost.py index 5523d384..fc7c48bd 100644 --- a/gallery_dl/extractor/cohost.py +++ b/gallery_dl/extractor/cohost.py @@ -82,6 +82,11 @@ class CohostExtractor(Extractor): file = block["attachment"].copy() file["shared"] = shared files.append(file) + elif type == "attachment-row": + for att in block["attachments"]: + file = att["attachment"].copy() + file["shared"] = shared + files.append(file) elif type == "markdown": content.append(block["markdown"]["content"]) elif type == "ask":