From 271f23d97179fa9bf0a35d9e358cbffb89099ada Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 1 Jun 2023 15:31:52 +0200 Subject: [PATCH] [twitter] extract 'conversation_id' metadata (#3839) --- gallery_dl/extractor/twitter.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gallery_dl/extractor/twitter.py b/gallery_dl/extractor/twitter.py index c47021ef..cc4667b0 100644 --- a/gallery_dl/extractor/twitter.py +++ b/gallery_dl/extractor/twitter.py @@ -295,6 +295,8 @@ class TwitterExtractor(Extractor): tget("quoted_by_id_str")), "reply_id" : text.parse_int( tget("in_reply_to_status_id_str")), + "conversation_id": text.parse_int( + tget("conversation_id_str")), "date" : date, "author" : author, "user" : self._user or author,