check condition
This commit is contained in:
parent
c0c00a0759
commit
30be0904d0
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -108,7 +108,7 @@ class Listener(StreamingClient):
|
||||||
print("Thread...", end=" ")
|
print("Thread...", end=" ")
|
||||||
base_tweet = self.client.get_tweet(id=tweet.conversation_id, tweet_fields="author_id", user_auth=True).data
|
base_tweet = self.client.get_tweet(id=tweet.conversation_id, tweet_fields="author_id", user_auth=True).data
|
||||||
# If we have an author ID, the author account is in private
|
# If we have an author ID, the author account is in private
|
||||||
if base_tweet.author_id:
|
if hasattr(base_tweet, 'author_id'):
|
||||||
if keys["VERBOSE"]:
|
if keys["VERBOSE"]:
|
||||||
print("Auteur du premier tweet en privé, pas de réponses.")
|
print("Auteur du premier tweet en privé, pas de réponses.")
|
||||||
return
|
return
|
||||||
|
|
Reference in a new issue