Fix for viewing group recipients without contact information.

master
Moxie Marlinspike 2013-03-07 17:47:57 -08:00
parent 07c59d969a
commit bb3777aa68
1 changed files with 1 additions and 1 deletions

View File

@ -339,7 +339,7 @@ public class ConversationActivity extends PassphraseRequiredSherlockFragmentActi
List<String> recipientStrings = new LinkedList<String>();
for (Recipient recipient : getRecipients().getRecipientsList()) {
recipientStrings.add(recipient.getName());
recipientStrings.add(recipient.toShortString());
}
AlertDialog.Builder builder = new AlertDialog.Builder(this);