Fixed reply_id not getting sent to the twitter API

This commit is contained in:
Anna
2010-05-11 18:15:18 -04:00
parent a8abc21dd6
commit 8b56ed2dcf
2 changed files with 5 additions and 3 deletions

View File

@ -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)