[twitter] support 'profile-conversation' entries (#3938)

This commit is contained in:
Mike Fährmann
2023-04-21 15:04:41 +02:00
parent aaf58a1259
commit 1d505b39f8

View File

@@ -1570,9 +1570,9 @@ class TwitterAPI():
if esw("tweet-"):
tweets.append(entry)
elif esw("homeConversation-"):
tweets.extend(entry["content"]["items"])
elif esw("conversationthread-"):
elif esw(("homeConversation-",
"profile-conversation-",
"conversationthread-")):
tweets.extend(entry["content"]["items"])
elif esw("tombstone-"):
item = entry["content"]["itemContent"]