Show appropriate text for answered introduction requests.

This commit is contained in:
akwizgran
2020-06-25 16:02:52 +01:00
parent 033fd2d3b4
commit a03953563f
2 changed files with 6 additions and 1 deletions

View File

@@ -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);