Added functionality to get retweets in the home timeline, fixing the missing tweet problem (partially)
This commit is contained in:
parent
3e41885bbe
commit
1c92c34dd9
2 changed files with 57 additions and 1 deletions
|
@ -71,7 +71,7 @@ class MyTwitter():
|
|||
|
||||
def update_window(self):
|
||||
if self.list is None or self.list == 'Home':
|
||||
statuses = self.api.GetFriendsTimeline(self.username, count=self.num_entries)
|
||||
statuses = self.api.GetHomeTimeline(count=self.num_entries)
|
||||
elif self.list == '@' + self.username:
|
||||
statuses = self.api.GetReplies()
|
||||
else:
|
||||
|
|
Reference in a new issue