[twitter] add 'reply_to' metadata to replies

This commit is contained in:
Mike Fährmann
2020-06-09 21:48:04 +02:00
parent 83b7bd0413
commit 4442dfe7b8

View File

@@ -146,6 +146,9 @@ class TwitterExtractor(Extractor):
"nick": u["name"],
} for u in mentions]
if "in_reply_to_screen_name" in tweet:
tdata["reply_to"] = tweet["in_reply_to_screen_name"]
if "full_text_quoted" in tweet:
tdata["content_quoted"] = tweet["full_text_quoted"]