diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-10-20 19:42:47 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-10-20 19:42:47 -0700 |
| commit | 7c2b3e4dbee74d287016310a9f323f9a34ebbfc1 (patch) | |
| tree | 0e8c55ba73e4f7fe55e47303d9b20e1a3920caca /sega | |
| parent | 3304087317bae4fa7e336d731879335619d314e9 (diff) | |
remove title from chuni_intl posts
its the same as content field
Diffstat (limited to 'sega')
| -rw-r--r-- | sega/chuni_intl.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sega/chuni_intl.py b/sega/chuni_intl.py index ea8cd7f..64d279c 100644 --- a/sega/chuni_intl.py +++ b/sega/chuni_intl.py @@ -105,7 +105,7 @@ def parse_chuni_intl_api_route(raw_api_data: str, identifier: str, limit: int): timestamp = int(dt.timestamp()) full_image_url = post_data["thumbnail"] content = post_data["desc"] - headline = post_data["title"] + # headline = post_data["title"] kinda useless cause its always just the same as content url = post_data["permalink"] images = [{ "image": full_image_url, @@ -116,7 +116,7 @@ def parse_chuni_intl_api_route(raw_api_data: str, identifier: str, limit: int): "identifier": identifier, "type": None, "timestamp": timestamp, - "headline": headline, + "headline": None, "content": content, "url": url, "images": images, |
