Disable Twitter mentions

master
Nikola Forró 4 years ago
parent 751831843f
commit 94ae99d5d2

@ -73,6 +73,9 @@ class Bot(discord.Client):
tweets = data.get('tweet_create_events', [])
if not tweets:
return
if 'user_has_blocked' in data:
# ignore mentions
return
user_id = data.get('for_user_id')
if not user_id:
return

Loading…
Cancel
Save