mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-04-05 03:12:29 -04:00
Show all current account replies in streaming API
This commit is contained in:
parent
d301f841e3
commit
01dd93e076
@ -32,7 +32,7 @@ class StreamListener(tweepy.StreamListener):
|
|||||||
def on_status(self, status):
|
def on_status(self, status):
|
||||||
""" Checks data arriving as a tweet. """
|
""" Checks data arriving as a tweet. """
|
||||||
# Hide replies to users not followed by current account.
|
# Hide replies to users not followed by current account.
|
||||||
if status.in_reply_to_user_id_str != None and status.in_reply_to_user_id_str not in self.users:
|
if status.in_reply_to_user_id_str != None and status.in_reply_to_user_id_str not in self.users and status.user.screen_name != self.user:
|
||||||
return
|
return
|
||||||
if status.user.id_str in self.users:
|
if status.user.id_str in self.users:
|
||||||
pub.sendMessage("newStatus", status=status, user=self.user)
|
pub.sendMessage("newStatus", status=status, user=self.user)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user