From 383aa41dbc666da33a56df3199da684dcbb5c77b Mon Sep 17 00:00:00 2001 From: skillradius <77825071+skillradius360@users.noreply.github.com> Date: Thu, 26 Feb 2026 00:25:01 +0530 Subject: [PATCH] Fix fetchById issue of target location This is the problem regarding the fetching of target with a X id and then it returns ItemContent... this is fixed and working as intended --- twikit/client/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twikit/client/client.py b/twikit/client/client.py index 053f0087..6ea55a8d 100644 --- a/twikit/client/client.py +++ b/twikit/client/client.py @@ -1523,7 +1523,7 @@ async def _get_more_replies( results.append(tweet) if entries[-1]['entryId'].startswith('cursor'): - next_cursor = entries[-1]['content']['itemContent']['value'] + next_cursor = entries[-1]['content']['value'] _fetch_next_result = partial(self._get_more_replies, tweet_id, next_cursor) else: next_cursor = None