Status icon flashes on new tweets
This commit is contained in:
parent
5a9aa09167
commit
cc7011b724
3 changed files with 18 additions and 13 deletions
|
@ -270,7 +270,7 @@ class GetUserLists(ApiThread):
|
|||
lists = self.api.GetUserLists()
|
||||
except (HTTPError, URLError) as exception:
|
||||
print 'debug: GetUserLists had error: ' + str(exception.code)
|
||||
sleep(5)
|
||||
sleep(30)
|
||||
done = False
|
||||
|
||||
self.sig_proxy.emit('lists-ready', lists, None)
|
||||
|
@ -424,6 +424,7 @@ def results_to_statuses(results, api):
|
|||
status.user.screen_name = result.from_user
|
||||
status.user.name = ''
|
||||
status.user.profile.image_url = result.profile_image_url
|
||||
status.in_reply_to_status_id = None
|
||||
status.in_reply_to_screen_name = result.to_user
|
||||
# The Twitter Search API has different timestamps than the
|
||||
# REST API... balls
|
||||
|
|
Reference in a new issue