Fixed in-reply-to links
This commit is contained in:
parent
213b3ce9ac
commit
e605e5333f
2 changed files with 8 additions and 2 deletions
|
@ -179,7 +179,14 @@ class MyTwitter():
|
|||
# If it already exists, don't add it, just switch to it
|
||||
for i in range(self.tweet_notebook.get_n_pages()):
|
||||
pane = self.tweet_notebook.get_nth_page(i)
|
||||
if pane.get_list_name() == name:
|
||||
# Unless it is a single tweet... ignore those unless
|
||||
# we are also a single tweet... then, special logic
|
||||
if pane.get_single_tweet() is not None:
|
||||
if pane.get_single_tweet() == single_tweet:
|
||||
self.tweet_notebook.set_current_page(i)
|
||||
return
|
||||
|
||||
elif pane.get_list_name() == name:
|
||||
self.tweet_notebook.set_current_page(i)
|
||||
return
|
||||
|
||||
|
|
Reference in a new issue