From b266bc21963d915f3de1d08f2baec7e3438408f5 Mon Sep 17 00:00:00 2001
From: OndraRehounek <ondra.rehounek@seznam.cz>
Date: Wed, 7 Sep 2022 14:50:25 +0200
Subject: [PATCH] twitter_utils: Save twitter id explicitly as string in
 TweetDownloadService

---
 twitter_utils/services.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/twitter_utils/services.py b/twitter_utils/services.py
index b188633a..1ce0598d 100644
--- a/twitter_utils/services.py
+++ b/twitter_utils/services.py
@@ -112,7 +112,7 @@ class TweetDownloadService:
                             author_name=user_data.name,
                             author_username=user_data.username,
                             text=tweet.text,
-                            twitter_id=tweet.id,
+                            twitter_id=str(tweet.id),
                         )
                     )
 
-- 
GitLab