Fixed reply_id not getting sent to the twitter API
This commit is contained in:
parent
a8abc21dd6
commit
8b56ed2dcf
2 changed files with 5 additions and 3 deletions
|
@ -332,7 +332,7 @@ class TweetBox(gtk.VBox):
|
|||
self.text.set_markup(new_text)
|
||||
|
||||
# If this is in reply to something, set appropriate label
|
||||
if self.in_reply_to_screen_name:
|
||||
if self.in_reply_to_screen_name and self.in_reply_to_id:
|
||||
self.reply_to_button.set_label('in reply to ' + self.in_reply_to_screen_name)
|
||||
|
||||
|
||||
|
|
Reference in a new issue