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,13 +793,8 @@ public class ConversationActivity extends PassphraseRequiredSherlockFragmentActi
if (recipients != null) {
String ids = recipients.toIdString();
Log.w("ConversationActivity", "Looking up new recipients...");
recipients = RecipientFactory.getRecipientsForIds(context, ids, true);
recipients.addListener(new RecipientModifiedListener() {
@Override
public void onModified(Recipient recipient) {
initializeTitleBar();
}
});
recipients = RecipientFactory.getRecipientsForIds(context, ids, false);
initializeTitleBar();
}
}
};