mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
Remember when invitation was auto-declined due to deletion
And render differently
This commit is contained in:
committed by
Torsten Grote
parent
a7590956fd
commit
5c41d09c52
@@ -102,6 +102,10 @@ class ConversationVisitor implements
|
||||
text = ctx.getString(
|
||||
R.string.blogs_sharing_response_accepted_sent,
|
||||
contactName.getValue());
|
||||
} else if (r.isAutoDecline()) {
|
||||
text = ctx.getString(
|
||||
R.string.blogs_sharing_response_declined_auto,
|
||||
contactName.getValue());
|
||||
} else {
|
||||
text = ctx.getString(
|
||||
R.string.blogs_sharing_response_declined_sent,
|
||||
@@ -155,6 +159,10 @@ class ConversationVisitor implements
|
||||
text = ctx.getString(
|
||||
R.string.forum_invitation_response_accepted_sent,
|
||||
contactName.getValue());
|
||||
} else if (r.isAutoDecline()) {
|
||||
text = ctx.getString(
|
||||
R.string.forum_invitation_response_declined_auto,
|
||||
contactName.getValue());
|
||||
} else {
|
||||
text = ctx.getString(
|
||||
R.string.forum_invitation_response_declined_sent,
|
||||
|
||||
Reference in New Issue
Block a user