Load more items now works properly in user timelines

This commit is contained in:
Manuel Cortez 2014-11-08 03:09:49 -06:00
parent 68036e1715
commit 5964bd6b3d
2 changed files with 2 additions and 2 deletions

View File

@ -177,7 +177,7 @@ class basePanel(wx.Panel):
else:
last_id = self.db.settings[self.name_buffer][-1]["id"]
try:
items = twitter.starting.get_more_items(self.function, self.twitter, count=config.main["general"]["max_tweets_per_call"], max_id=last_id)
items = twitter.starting.get_more_items(self.function, self.twitter, count=config.main["general"]["max_tweets_per_call"], max_id=last_id, screen_name=self.argumento)
except TwythonError as e:
output.speak(e.message)
for i in items:

View File

@ -946,7 +946,7 @@ class mainFrame(wx.Frame):
except:
pass
def get_more_items(self):
def get_more_items(self, event=None):
self.nb.GetCurrentPage().get_more_items()
def connect_streams(self):