parent
ae4f6b1dd4
commit
6caee6b0f0
1 changed files with 8 additions and 3 deletions
|
@ -797,9 +797,14 @@ public class ConversationActivity extends PassphraseRequiredActionBarActivity
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onModified(Recipients recipients) {
|
public void onModified(final Recipients recipients) {
|
||||||
titleView.setTitle(recipients);
|
titleView.post(new Runnable() {
|
||||||
setBlockedUserState(recipients);
|
@Override
|
||||||
|
public void run() {
|
||||||
|
titleView.setTitle(recipients);
|
||||||
|
setBlockedUserState(recipients);
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private void initializeReceivers() {
|
private void initializeReceivers() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue