Skip to content

Commit

Permalink
fix an FC bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ch-linghu committed Feb 20, 2012
1 parent a28990e commit 81431d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/com/ch_linghu/fanfoudroid/StatusActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -723,11 +723,11 @@ private void showRelativeStatus(Tweet tweet) {
.getRelativeDate(tweet.createdAt));
} else {
String id = "";
if (!TextUtils.isEmpty(tweet.inReplyToScreenName)){
id = tweet.inReplyToScreenName;
if (!TextUtils.isEmpty(this.tweet.inReplyToScreenName)){
id = this.tweet.inReplyToScreenName;
}
if (!TextUtils.isEmpty(tweet.repostUserId)) {
id = tweet.repostUserId;
if (!TextUtils.isEmpty(this.tweet.repostUserId)) {
id = this.tweet.repostUserId;
}
String msg = MessageFormat.format(
getString(R.string.status_status_reply_cannot_display),
Expand Down

0 comments on commit 81431d0

Please sign in to comment.