From 37a4419ea68b6d12517b4c798511d6c556a24f80 Mon Sep 17 00:00:00 2001 From: jeancf Date: Fri, 18 Nov 2022 13:32:16 +0100 Subject: [PATCH] Added missing parameter to process_media_body() --- twoot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twoot.py b/twoot.py index 1b57be7..bb74357 100755 --- a/twoot.py +++ b/twoot.py @@ -522,7 +522,7 @@ def main(argv): tt_iter = status.find('div', class_='tweet-content media-body').children # Process text of tweet - tweet_text += process_media_body(tt_iter) + tweet_text += process_media_body(tt_iter, remove_trackers) # Process quote: append link to tweet_text quote_div = status.find('a', class_='quote-link')