From 7c2b3e4dbee74d287016310a9f323f9a34ebbfc1 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Mon, 20 Oct 2025 19:42:47 -0700 Subject: remove title from chuni_intl posts its the same as content field --- sega/chuni_intl.py | 4 ++-- 1 file 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, -- cgit v1.2.3