From 3438a3098dae41232ee8a3224a11733a47edcefe Mon Sep 17 00:00:00 2001 From: Nahida Date: Wed, 4 Oct 2023 10:34:02 +0800 Subject: [PATCH] [twitter] add possible_sensitive field --- gallery_dl/extractor/twitter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gallery_dl/extractor/twitter.py b/gallery_dl/extractor/twitter.py index 3895c74c..553cf6e4 100644 --- a/gallery_dl/extractor/twitter.py +++ b/gallery_dl/extractor/twitter.py @@ -305,6 +305,7 @@ class TwitterExtractor(Extractor): "author" : author, "user" : self._user or author, "lang" : tweet["lang"], + "possibly_sensitive" : tweet["possibly_sensitive"], "source" : text.extr(source, ">", "<"), "favorite_count": tget("favorite_count"), "quote_count" : tget("quote_count"),