mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Show appropriate text for answered introduction requests.
This commit is contained in:
@@ -230,7 +230,11 @@ class ConversationVisitor implements
|
||||
R.layout.list_item_conversation_notice_out, text, r);
|
||||
} else {
|
||||
String text;
|
||||
if (r.isContact()) {
|
||||
if (r.wasAnswered()) {
|
||||
text = ctx.getString(
|
||||
R.string.introduction_request_answered_received,
|
||||
contactName.getValue(), name);
|
||||
} else if (r.isContact()) {
|
||||
text = ctx.getString(
|
||||
R.string.introduction_request_exists_received,
|
||||
contactName.getValue(), name);
|
||||
|
||||
Reference in New Issue
Block a user