diff options
| author | Pinapelz <donaldshan1@outlook.com> | 2025-04-22 11:26:22 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-22 11:26:22 -0700 |
| commit | d74f27ea852772e210d444d7db3ab863f5134d99 (patch) | |
| tree | 0dce4cf9be261bd3f342e05795c05f8f0450391f /community | |
| parent | 41d2753b38dd76c88b884081e02c808966594b49 (diff) | |
fix rbdx image data formatting
Diffstat (limited to 'community')
| -rw-r--r-- | community/rbdx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/rbdx.py b/community/rbdx.py index 4e91991..aab1ba2 100644 --- a/community/rbdx.py +++ b/community/rbdx.py @@ -24,6 +24,6 @@ def get_carousel_posts(html: str): "url": None, "headline": None, "content": "[お知らせ] ANNOUNCEMENT FROM REFLECT BEAT DELUXE PLUS", - "images": [urljoin(base_url, img_tag['src'])] + "images": [{"image": urljoin(base_url, img_tag['src']), "link": None}] }) return news_posts |
