mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-22 11:18:08 -06:00
Load more items now works properly in user timelines
This commit is contained in:
parent
68036e1715
commit
5964bd6b3d
@ -177,7 +177,7 @@ class basePanel(wx.Panel):
|
|||||||
else:
|
else:
|
||||||
last_id = self.db.settings[self.name_buffer][-1]["id"]
|
last_id = self.db.settings[self.name_buffer][-1]["id"]
|
||||||
try:
|
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:
|
except TwythonError as e:
|
||||||
output.speak(e.message)
|
output.speak(e.message)
|
||||||
for i in items:
|
for i in items:
|
||||||
|
@ -946,7 +946,7 @@ class mainFrame(wx.Frame):
|
|||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def get_more_items(self):
|
def get_more_items(self, event=None):
|
||||||
self.nb.GetCurrentPage().get_more_items()
|
self.nb.GetCurrentPage().get_more_items()
|
||||||
|
|
||||||
def connect_streams(self):
|
def connect_streams(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user