Fix bug that caused Cc field to be displayed when empty.

The IMAP & POP messages are being stored with cc="" instead of null,
which is taken care of by testing the output of toFriendly() instead
of the raw field from the DB.

Change-Id: I9460e7ae098ac5cd0ccd527381ffd4e6d9defae4
This commit is contained in:
Andrew Stadler 2009-09-18 22:54:30 -07:00
parent 9312faea43
commit b4626d151c

View File

@ -1168,8 +1168,9 @@ public class MessageView extends Activity implements OnClickListener {
mTimeView.setText(mTimeFormat.format(date));
mDateView.setText(Utility.isDateToday(date) ? null : mDateFormat.format(date));
mToView.setText(Address.toFriendly(Address.unpack(message.mTo)));
mCcView.setText(Address.toFriendly(Address.unpack(message.mCc)));
mCcContainerView.setVisibility((message.mCc != null) ? View.VISIBLE : View.GONE);
String friendlyCc = Address.toFriendly(Address.unpack(message.mCc));
mCcView.setText(friendlyCc);
mCcContainerView.setVisibility((friendlyCc != null) ? View.VISIBLE : View.GONE);
mAttachmentIcon.setVisibility(message.mAttachments != null ? View.VISIBLE : View.GONE);
mFavoriteIcon.setImageDrawable(message.mFlagFavorite ? mFavoriteIconOn : mFavoriteIconOff);