Correctly update group title.

This commit is contained in:
Moxie Marlinspike 2014-02-24 00:37:11 -08:00
parent d5f0415907
commit 2ab8c77748

View File

@ -793,14 +793,9 @@ public class ConversationActivity extends PassphraseRequiredSherlockFragmentActi
if (recipients != null) { if (recipients != null) {
String ids = recipients.toIdString(); String ids = recipients.toIdString();
Log.w("ConversationActivity", "Looking up new recipients..."); Log.w("ConversationActivity", "Looking up new recipients...");
recipients = RecipientFactory.getRecipientsForIds(context, ids, true); recipients = RecipientFactory.getRecipientsForIds(context, ids, false);
recipients.addListener(new RecipientModifiedListener() {
@Override
public void onModified(Recipient recipient) {
initializeTitleBar(); initializeTitleBar();
} }
});
}
} }
}; };